zoukankan      html  css  js  c++  java
  • 1075. PAT Judge

    1075. PAT Judge (25)

    时间限制
    200 ms
    内存限制
    65536 kB
    代码长度限制
    16000 B
    判题程序
    Standard
    作者
    CHEN, Yue

    The ranklist of PAT is generated from the status list, which shows the scores of the submittions. This time you are supposed to generate the ranklist for PAT.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains 3 positive integers, N (<=104), the total number of users, K (<=5), the total number of problems, and M (<=105), the total number of submittions. It is then assumed that the user id's are 5-digit numbers from 00001 to N, and the problem id's are from 1 to K. The next line contains K positive integers p[i] (i=1, ..., K), where p[i] corresponds to the full mark of the i-th problem. Then M lines follow, each gives the information of a submittion in the following format:

    user_id problem_id partial_score_obtained

    where partial_score_obtained is either -1 if the submittion cannot even pass the compiler, or is an integer in the range [0, p[problem_id]]. All the numbers in a line are separated by a space.

    Output Specification:

    For each test case, you are supposed to output the ranklist in the following format:

    rank user_id total_score s[1] ... s[K]

    where rank is calculated according to the total_score, and all the users with the same total_score obtain the same rank; and s[i] is the partial score obtained for the i-th problem. If a user has never submitted a solution for a problem, then "-" must be printed at the corresponding position. If a user has submitted several solutions to solve one problem, then the highest score will be counted.

    The ranklist must be printed in non-decreasing order of the ranks. For those who have the same rank, users must be sorted in nonincreasing order according to the number of perfectly solved problems. And if there is still a tie, then they must be printed in increasing order of their id's. For those who has never submitted any solution that can pass the compiler, or has never submitted any solution, they must NOT be shown on the ranklist. It is guaranteed that at least one user can be shown on the ranklist.

    Sample Input:
    7 4 20
    20 25 25 30
    00002 2 12
    00007 4 17
    00005 1 19
    00007 2 25
    00005 1 20
    00002 2 2
    00005 1 15
    00001 1 18
    00004 3 25
    00002 2 25
    00005 3 22
    00006 4 -1
    00001 2 18
    00002 1 20
    00004 1 15
    00002 4 18
    00001 3 4
    00001 4 2
    00005 2 -1
    00004 2 0
    
    Sample Output:
    1 00002 63 20 25 - 18
    2 00005 42 20 0 22 -
    2 00007 42 - 25 - 17
    2 00001 42 18 18 4 2
    5 00004 40 15 0 25 -
      1 #include<stdio.h>
      2 #include<math.h>
      3 #include<stdlib.h>
      4 #include<string.h>
      5 #include<algorithm>
      6 using namespace std;
      7 
      8 struct user
      9 {
     10     int id, sum, perfect, flag, r;
     11     int score[10];
     12 }a[10010];
     13 
     14 bool cmp(user x, user y)
     15 {
     16     if(x.sum != y.sum)
     17         return x.sum > y.sum;
     18     else if(x.perfect != y.perfect)
     19         return x.perfect > y.perfect;
     20     else if(x.id != y.id)
     21         return x.id < y.id;
     22 }
     23 
     24 int main()
     25 {
     26     int i, n, k, m, full[10];
     27     scanf("%d%d%d", &n, &k, &m);
     28     for(i = 1; i <= n; i++)
     29     {
     30         a[i].id = i;
     31         a[i].sum = 0;
     32         a[i].perfect = 0;
     33         a[i].flag = 0;
     34         memset(a[i].score, -1, sizeof(a[i].score));
     35     }
     36     for(i = 1; i <= k; i++)
     37     {
     38         scanf("%d", &full[i]);
     39     }
     40     int uid, pid, grade;
     41     for(i = 0; i < m; i++)
     42     {
     43         scanf("%d%d%d", &uid, &pid, &grade);
     44         if(grade >= 0)
     45         {
     46             a[uid].flag = 1;
     47             if(a[uid].score[pid] < grade)
     48             {
     49                 a[uid].score[pid] = grade;
     50                 if(grade == full[pid])
     51                 {
     52                     a[uid].perfect++;
     53                 }
     54             }
     55         }
     56         else if(grade == -1 && grade >= a[uid].score[pid])
     57             a[uid].score[pid] = 0;
     58     }
     59     for(i = 1; i <= n; i++)
     60     {
     61         for(int j = 1; j <= k; j++)
     62         {
     63             if(a[i].score[j] != -1)
     64                 a[i].sum += a[i].score[j];
     65         }
     66     }
     67     sort(a + 1, a + n + 1, cmp);
     68     user b[n + 5];
     69     int j = 1;
     70     for(i = 1; i <= n; i++)
     71     {
     72         if(a[i].flag == 1)
     73         {
     74             b[j++] = a[i];
     75         }
     76     }
     77     //printf("%d", j);
     78     b[1].r = 1;
     79     for(i = 2; i < j; i++)
     80     {
     81         if(b[i].sum == b[i - 1].sum)
     82         {
     83             b[i].r = b[i - 1].r;
     84         }
     85         else
     86         {
     87             b[i].r = i;
     88         }
     89     }
     90     for(i = 1; i < j; i++)
     91     {
     92         printf("%d %05d %d ", b[i].r, b[i].id, b[i].sum);
     93         for(int q = 1; q < k; q++)
     94         {
     95             if(b[i].score[q] == -1)
     96             {
     97                 printf("- ");
     98             }
     99             else
    100             {
    101                 printf("%d ", b[i].score[q]);
    102             }
    103         }
    104         if(b[i].score[k] == -1)
    105         {
    106             printf("-
    ");
    107         }
    108         else
    109         {
    110             printf("%d
    ", b[i].score[k]);
    111         }
    112     }
    113     return 0;
    114 }
  • 相关阅读:
    ActiveX版本升级步骤
    转 .NET 2.0中串口通讯类SerialPort用法整理
    解决“请求的名称有效并且在数据库中找到,但是它没有相关的正确的数据来被解析”
    Padding is invalid and cannot be removed 解决方法
    【转】Umbraco 4 安装 中文教程
    在windows 2008 装oracle 10g
    使用Synctoy进行数据同步
    windows server 2008 多用户远程登录设置
    你好,博客园!
    使Ruby在OS X的控制台输出中使用颜色
  • 原文地址:https://www.cnblogs.com/yomman/p/4282122.html
Copyright © 2011-2022 走看看