1025. PAT Ranking (25)【排序】——PAT (Advanced Level) Practise

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;}

尝到你和你在一起的快乐,你是唯一能让我尝到酸甜苦辣的人。

1025. PAT Ranking (25)【排序】——PAT (Advanced Level) Practise

相关文章:

你感兴趣的文章:

标签云: