题目信息
1025. PAT Ranking (25)
时间限制200 ms
内存限制65536 kB
代码长度限制16000 B
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 N ranklists 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
解题思路
分组排序,最终合并
AC代码
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
struct stu{
string id;
int sc, rid, rRank;
stu(){}
stu(string i, int s, int r) : id(i), sc(s), rid(r){}
bool operator<(const stu& b)const{
if (sc == b.sc) return id < b.id;
return sc > b.sc;
}
}v[300005];
int main()
{
ios::sync_with_stdio(false);
int n, m, s, cnt = 0;
string id;
cin >> n;
for (int i = 1; i <= n; ++i){
cin >> m;
int begin = cnt;
while (m--){
cin >>id >> s;
v[cnt++] = stu(id, s, i);
}
sort(v + begin, v + cnt);
int pre = begin;
v[begin].rRank = 1;
for (int j = begin + 1; j < cnt; ++j){
if (v[j].sc == v[pre].sc){
v[j].rRank = v[pre].rRank;
}else{
v[j].rRank = j - begin + 1;
}
pre = j;
}
}
sort(v, v + cnt);
cout <<cnt <<endl;
int rk = 1, pre = 0;
cout <<v[0].id <<" 1 " <<v[0].rid <<" 1"<<endl;
for (int j = 1; j < cnt; ++j){
if (v[j].sc != v[pre].sc){
rk = j + 1;
}
cout <<v[j].id <<" " <<rk <<" " <<v[j].rid <<" "<<v[j].rRank<<endl;
pre = j;
}
return 0;
}

本文深入探讨了PAT排名算法的实现过程,包括输入解析、排序策略和输出格式。通过实例代码展示了如何正确合并多个排名列表,生成最终的排名列表。重点介绍了分组排序和最终合并的解题思路。
2656

被折叠的 条评论
为什么被折叠?



