1055. The World's Richest (25)

来源:互联网 发布:linux服务器监听端口 编辑:程序博客网 时间:2024/05/17 02:46

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 the M 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, output "None".

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
--------------------华丽的分割线---------------------
分析:先对输入进行排序,然后进行剪枝,主要是把相同年龄财富排在100之后的人剔除掉,因为肯定不会输出这部分人。不过试了下,不剔除也不会超时,所以不剪也没事。
代码:
#include<cstdio>#include<cstdlib>#include<cstring>#define Maxn 100001typedef struct{char name[9];int age;int worth;}Rich;Rich input[Maxn];int cut[Maxn];int numofeachage[201];int cmp(const void *a,const void *b);int main(void){int N,K;scanf("%d %d\n",&N,&K);int i,j;for(i=0;i<N;++i){scanf("%s %d %d\n",input[i].name,&input[i].age,&input[i].worth);}qsort(input,N,sizeof(input[0]),cmp);int cutindex = 0;for(i=0;i<N;++i){++numofeachage[input[i].age];if(numofeachage[input[i].age] <= 100){cut[cutindex++]= i;}}int M,Amin,Amax;for(i=1;i<=K;++i){scanf("%d %d %d",&M,&Amin,&Amax);printf("Case #%d:\n",i);int outcount=0;for(j=0;j<cutindex;++j){if(Amin <= input[cut[j]].age && input[cut[j]].age <= Amax){printf("%s %d %d\n",input[cut[j]].name,input[cut[j]].age,input[cut[j]].worth);++outcount;if(outcount == M){break;}}}if(outcount == 0){printf("None\n");}}system("pause");return 0;}int cmp(const void *a,const void *b){Rich tempa = *(Rich *)a;Rich tempb = *(Rich *)b;if(tempa.worth != tempb.worth){return tempb.worth - tempa.worth;}if(tempa.age != tempb.age){return tempa.age - tempb.age;}return strcmp(tempa.name,tempb.name);}


0 0
原创粉丝点击