最终排名
Time Limit: 1000MS Memory limit: 65536K
题目描述
第四届山东理工大学ACM网络编程擂台赛比赛完后需要产生一个最终排名,排名按照题数多少来决定。但是有太多的队伍参与,手动计算排名已经不能满足比赛的需求。现在有一份名单记录各个队伍的ID和做出的题目数,需要你写一个程序,产生最终的排名。
为了简化题目,这里的排名规则为: 做出题目数量多的队伍排在前面,如果题数相等,保持输入时的相对顺序不要改变 。输入
第一行包含一个正整数T( 1≤T≤15),表示有T组测试数据。每组数据第一行有一个正整数N(1< N≤10000),表示队伍数量。接下来N 行包含两个整数,1≤ID≤10^7, 0≤M≤100。ID为队伍的编号,M为做出的题数。
输出
每组数据输出包含N行,第i行有两个整数,ID和M表示排在第i位的队伍的ID和做出的题数。
示例输入
1 81 216 311 220 33 526 47 122 4
示例输出
3 526 422 416 320 31 211 27 1
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <algorithm> #include <string.h> #define N 10001 using namespace std; struct node { int x; int y; }node[N]; int com(const void *a, const void *b) { struct node *p, *q; p = (struct node *)a; q = (struct node *)b; if(p->y < q->y) return 1; else return 0; } int main() { int i; int T,n; scanf("%d",&T); while(T--) { scanf("%d",&n); for(int j = 0;j<n;j++) { scanf("%d%d",&node[j].x,&node[j].y); } qsort(node, n, sizeof(struct node), com); for(i=0; i<n; i++) printf("%d %d\n",node[i].x, node[i].y); } return 0; }