7-17 The World's Richest(25 分)(结构体排序)

来源:互联网 发布:软件自学网创办人 编辑:程序博客网 时间:2024/05/27 00:33

7-17 The World's Richest(25 分)

Forbes magazine publishes every year its list of billionaires based on the annual ranking of the world's wealthiest people. Now you are supposed to simulate this job, but concentrate only on the people in a certain range of ages. That is, given the net worths of N people, you must find the M richest people in a given range of their ages.

Input Specification:

Each input file contains one test case. For each case, the first line contains 2 positive integers:N (105) - the total number of people, and K (103) - the number of queries. Then N lines follow, each contains the name (string of no more than 8 characters without space), age (integer in (0, 200]), and the net worth (integer in [106,106]) of a person. Finally there are K lines of queries, each contains three positive integers:M ( 100) - the maximum number of outputs, and [Amin,Amax] which are the range of ages. All the numbers in a line are separated by a space.

Output Specification:

For each query, first print in a line Case #X: where X is the query number starting from 1. Then output theM richest people with their ages in the range [Amin,Amax]. Each person's information occupies a line, in the format Name Age Net_Worth.

The outputs must be in non-increasing order of the net worths. In case there are equal worths, it must be in non-decreasing order of the ages. If both worths and ages are the same, then the output must be in non-decreasing alphabetical order of the names. It is guaranteed that there is no two persons share all the same of the three pieces of information. In case no one is found, outputNone.

Sample Input:

12 4Zoe_Bill 35 2333Bob_Volk 24 5888Anny_Cin 95 999999Williams 30 -22Cindy 76 76000Alice 18 88888Joe_Mike 32 3222Michael 5 300000Rosemary 40 5888Dobby 24 5888Billy 24 5888Nobody 5 04 15 454 30 354 5 951 45 50

Sample Output:

Case #1:Alice 18 88888Billy 24 5888Bob_Volk 24 5888Dobby 24 5888Case #2:Joe_Mike 32 3222Zoe_Bill 35 2333Williams 30 -22Case #3:Anny_Cin 95 999999Michael 5 300000Alice 18 88888Cindy 76 76000Case #4:None

code:

#include <stdio.h>#include <string.h>#include <stdlib.h>//这道题主要考察qsort结构体的比较函数使用 struct node{char name[20];int age,money;}h[100010];int cmp(const void*a,const void*b){//先根据题意对整个结构体数组排好序 struct node* c = (struct node*)a;struct node* d = (struct node*)b;if(c->money==d->money){if(c->age==d->age){return strcmp(c->name,d->name);//财富和年龄相同,按字典序 }return c->age > d->age ? 1 : -1;//财富相同,按年龄从小到大 }return c->money < d->money ? 1 : -1;//否则按财富从大到小 }int main(){int n,k;int i,j;scanf("%d%d",&n,&k);for(i = 0; i < n; i++){scanf("%s%d%d",h[i].name,&h[i].age,&h[i].money);}//输入 qsort(h,n,sizeof(h[0]),cmp);//排序     for(j = 1; j <= k; j++){    printf("Case #%d:\n",j);    int m,l,r;    int cnt = 0;    scanf("%d%d%d",&m,&l,&r);    for(i = 0; i < n; i++){    if(h[i].age>=l&&h[i].age<=r){    printf("%s %d %d\n",h[i].name,h[i].age,h[i].money);    cnt++;}//判断符合输出,并记录数量 if(cnt==m)break;//达到数量输出 }if(cnt==0)printf("None\n");//如果数量为0输出none }return 0;}


阅读全文
0 0
原创粉丝点击