1025. PAT Ranking (25)

来源:互联网 发布:女生脱毛知乎 编辑:程序博客网 时间:2024/05/16 03:33

PAT

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<cstdio>#include<algorithm>#include<cstring>using namespace std;struct s{    char x[15];//考号     int cj;    int bendi;//本地排名     int quhao;//考场号 }ss[30004];int cmp(s q,s p){//若成绩不等按成绩降序排,若成绩相等按考号升序排     if(q.cj!=p.cj)        return q.cj>p.cj;    else        return strcmp(q.x,p.x)<0;}int main(){    int n,k,num=0;    scanf("%d",&n);    for(int i=1;i<=n;i++){        scanf("%d",&k);        num+=k;        for(int j=0;j<k;j++){            scanf("%s%d",ss[num-k+j].x,&ss[num-k+j].cj);            ss[num-k+j].quhao=i;        }        sort(ss+num-k,ss+num,cmp);//考场内成绩排名         ss[num-k].bendi=1;        for(int j=num-k+1;j<num;j++){            if(ss[j].cj==ss[j-1].cj)                ss[j].bendi=ss[j-1].bendi;            else                ss[j].bendi=j+1-(num-k);        }    }    sort(ss,ss+num,cmp);//总排名     printf("%d\n",num);    int l=1;    for(int i=0;i<num;i++){        if(i>0&&ss[i].cj!=ss[i-1].cj)            l=i+1;        printf("%s %d %d %d\n",ss[i].x,l,ss[i].quhao,ss[i].bendi);      }} 
原创粉丝点击