Programming Ability Test (PAT) is organized by the College of Computer Science and Technology of Zhejiang University. Each test is supposed to run simultaneously in several places, and the ranklists will be merged immediately after the test. Now it is your job to write a program to correctly merge all the ranklists and generate the final rank.
Input Specification:
Each input file contains one test case. For each case, the first line contains a positive number N (≤100), the number of test locations. Then Nranklists follow, each starts with a line containing a positive integer K (≤300), the number of testees, and then K lines containing the registration number (a 13-digit number) and the total score of each testee. All the numbers in a line are separated by a space.
Output Specification:
For each test case, first print in one line the total number of testees. Then print the final ranklist in the following format:
registration_number final_rank location_number local_rank
The locations are numbered from 1 to N. The output must be sorted in nondecreasing order of the final ranks. The testees with the same score must have the same rank, and the output must be sorted in nondecreasing order of their registration numbers.
Sample Input:
2
5
1234567890001 95
1234567890005 100
1234567890003 95
1234567890002 77
1234567890004 85
4
1234567890013 65
1234567890011 25
1234567890014 100
1234567890012 85
Sample Output:
9
1234567890005 1 1 1
1234567890014 1 2 1
1234567890001 3 1 2
1234567890003 3 1 2
1234567890004 5 1 4
1234567890012 5 2 2
1234567890002 7 1 5
1234567890013 8 2 3
1234567890011 9 2 4
就只是一个排序题,最重要的是题目最后一句:
具有相同分数的被试必须具有相同的等级,输出必须按其注册号的非递减顺序排序。
#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
int n,k;
struct node{
string name;
int score;
int num1;
int num2;
int num3;
}pre[30005];
bool cmp(node a,node b){
if(a.score !=b.score )
return a.score >b.score ;
else
return a.name <b.name ;
}
int main(){
cin>>n;
int len=0;
//输入数据
for(int i=0;i<n;i++){
cin>>k;
for(int j=0;j<k;j++){
cin>>pre[len].name >>pre[len].score ;
pre[len].num2 =i+1;
len++;
}
//对同组的进行处理
sort(pre+len-k,pre+len,cmp);
for(int j=len-k;j<len;j++){
pre[j].num3 =j-(len-k)+1;
}
for(int j=len-k+1;j<len;j++){
if(pre[j].score ==pre[j-1].score ){
pre[j].num3 =pre[j-1].num3 ;
}
}
}
//最终排名
sort(pre,pre+len,cmp);
for(int i=0;i<len;i++){
pre[i].num1 =i+1;
}
for(int i=1;i<len;i++){
if(pre[i].score ==pre[i-1].score ){
pre[i].num1 =pre[i-1].num1 ;
}
}
//输出结果
cout<<len<<endl;
for(int i=0;i<len;i++){
cout<<pre[i].name <<" "<<pre[i].num1 <<" "<<pre[i].num2 <<" "<<pre[i].num3 <<endl;
}
}