每年奥运会各大媒体都会公布一个排行榜,但是细心的读者发现,不同国家的排行榜略有不同。比如中国金牌总数列第一的时候,中国媒体就公布“金牌榜”;而美国的奖牌总数第一,于是美国媒体就公布“奖牌榜”。如果人口少的国家公布一个“国民人均奖牌榜”,说不定非洲的国家会成为榜魁…… 现在就请你写一个程序,对每个前来咨询的国家按照对其最有利的方式计算它的排名。
输入格式:
输入的第一行给出两个正整数N和M(≤,因为世界上共有224个国家和地区),分别是参与排名的国家和地区的总个数、以及前来咨询的国家的个数。为简单起见,我们把国家从0 ~ N−1编号。之后有N行输入,第i行给出编号为i−1的国家的金牌数、奖牌数、国民人口数(单位为百万),数字均为[0,1000]区间内的整数,用空格分隔。最后面一行给出M个前来咨询的国家的编号,用空格分隔。
输出格式:
在一行里顺序输出前来咨询的国家的排名:计算方式编号
。其排名按照对该国家最有利的方式计算;计算方式编号为:金牌榜=1,奖牌榜=2,国民人均金牌榜=3,国民人均奖牌榜=4。输出间以空格分隔,输出结尾不能有多余空格。
若某国在不同排名方式下有相同名次,则输出编号最小的计算方式。
输入样例:
4 4
51 100 1000
36 110 300
6 14 32
5 18 40
0 1 2 3
输出样例:
1:1 1:2 1:3 1:4
排完序要注意,排序依据相同的排名相同,否则排名等于所在位置。
代码:
#include <cstdio> #include <iostream> #include <cstring> #include <algorithm> using namespace std; struct country { int num,gnum,anum,pnum; }cou[224]; int n,m,r[224],t[224]; int comp1(country &a,country &b) {return a.gnum - b.gnum;} int comp2(country &a,country &b) {return a.anum - b.anum;} int comp3(country &a,country &b) {return a.gnum * b.pnum - a.pnum * b.gnum;} int comp4(country &a,country &b) {return a.anum * b.pnum - a.pnum * b.anum;} bool cmp1(country &a,country &b) {return comp1(a,b) > 0;} bool cmp2(country &a,country &b) {return comp2(a,b) > 0;} bool cmp3(country &a,country &b) {return comp3(a,b) > 0;} bool cmp4(country &a,country &b) {return comp4(a,b) > 0;} void getrank(bool (&cmp)(country &,country &),int (&comp)(country &,country &),int type) { sort(cou,cou + n,cmp); int ran = 1; for(int i = 0;i < n;i ++) { if(i && comp(cou[i],cou[i - 1])) ran = i + 1; if(r[cou[i].num] > ran) { r[cou[i].num] = ran; t[cou[i].num] = type; } } } int main() { scanf("%d%d",&n,&m); for(int i = 0;i < n;i ++) { scanf("%d%d%d",&cou[i].gnum,&cou[i].anum,&cou[i].pnum); r[i] = 225; cou[i].num = i; } getrank(cmp1,comp1,1); getrank(cmp2,comp2,2); getrank(cmp3,comp3,3); getrank(cmp4,comp4,4); int d; for(int i = 0;i < m;i ++) { scanf("%d",&d); if(i) putchar(' '); printf("%d:%d",r[d],t[d]); } return 0; }