PAT刷题:1025. PAT Ranking (25)

xiaoxiao2021-02-28  14

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 #include <iostream> #include <cstdio> #include <cstdlib> #include <cmath> #include <algorithm> #include <functional> #include <numeric> #include <vector> #include <list> #include <map> #include <string> #include <queue> using namespace std; struct Person{ string registration_number ; int score; int location_number; int final_rank; int local_rank; Person():registration_number("") , score(0) , location_number(0) , final_rank(0) , local_rank(0){} bool operator < (const Person &x)const{ if(score != x.score)return score>x.score; else return registration_number < x.registration_number; } }; int main() { vector<Person> persons; persons.reserve(30000); int locations=0; cin>>locations; for(int i=0;i<locations;i++){ int cnt=0; cin>>cnt; for(int j=0;j<cnt;j++){ Person p; p.location_number=i+1; cin>>p.registration_number>>p.score; persons.push_back(p); } sort(persons.end()-cnt , persons.end()); for(vector<Person>::iterator it=persons.end()-cnt ; it!=persons.end() ; ++it){ if(it>persons.end()-cnt && it->score == (it-1)->score)it->local_rank=(it-1)->local_rank; else it->local_rank=(it-(persons.end()-cnt))+1; } } sort(persons.begin() , persons.end()); cout<<persons.size()<<endl; for(int i=0;i<persons.size();i++){//registration_number final_rank location_number local_rank if(i>0 && persons[i].score == persons[i-1].score ) persons[i].final_rank=persons[i-1].final_rank; else persons[i].final_rank=i+1; cout<<persons[i].registration_number<<" "<<persons[i].final_rank<<" "<<persons[i].location_number<<" "<<persons[i].local_rank<<endl; } return 0; }
转载请注明原文地址: https://www.6miu.com/read-2150223.html

最新回复(0)