1025. PAT Ranking (25)

来源:互联网 发布:手机推荐知乎 编辑:程序博客网 时间:2024/06/03 08:43

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:
251234567890001 951234567890005 1001234567890003 951234567890002 771234567890004 8541234567890013 651234567890011 251234567890014 1001234567890012 85
Sample Output:
91234567890005 1 1 11234567890014 1 2 11234567890001 3 1 21234567890003 3 1 21234567890004 5 1 41234567890012 5 2 21234567890002 7 1 51234567890013 8 2 31234567890011 9 2 4

#include <iostream>#include <string>#include <algorithm>#include <cstring>#define MAX 30005using namespace std;typedef struct{    string num;    int score;    int final_rank;    int loca_num;    int loca_rank;}stu;stu s[MAX];bool cmp(stu a, stu b){    if(a.score > b.score)        return true;    else if(a.score == b.score && a.num <= b.num)        return true;    return false;}int main(){    int N, K;    int counter = 0;    int local[105] = {0};    int localpresco[105] = {0};    int localprenum[105] = {0};    cin >> N;    for(int i=1; i<=N; i++)    {        cin >> K;        while(K--)        {            cin >> s[counter].num >> s[counter].score;            s[counter].loca_num = i;            counter++;        }    }    sort(s, s+counter, cmp);    memset(localpresco, -1, sizeof(localpresco));    for(int i=0; i<counter; i++)    {        if(i!=0 && s[i].score==s[i-1].score)//如果分数和前一位分数相同那么名次相同            s[i].final_rank = s[i-1].final_rank;        else            s[i].final_rank = i+1;        int locanum = s[i].loca_num;        local[locanum]++;//本地名次        if(localpresco[locanum]!=-1 && s[i].score==localpresco[locanum])//如果和本地前一名分数相同那么本地名次相同            s[i].loca_rank = s[localprenum[locanum]].loca_rank;        else{            localpresco[locanum] = s[i].score;            localprenum[locanum] = i;            s[i].loca_rank = local[locanum];        }    }    cout << counter << endl;    for(int i=0; i<counter; i++)        cout << s[i].num << " " << s[i].final_rank << " " << s[i].loca_num << " " << s[i].loca_rank << endl;    return 0;}


0 0