The ranklist of PAT is generated from the status list, which shows the scores of the submissions. 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 (≤10^4), the total number of users, K (≤5), the total number of problems, and M (≤10^5), the total number of submissions. 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 submission in the following format:
1 | user_id problem_id partial_score_obtained |
where partial_score_obtained
is either −1 if the submission 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:
1 | 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:
1 | 7 4 20 |
Sample Output:
1 | 1 00002 63 20 25 - 18 |
分析:
题目要求:给定N个用户、K个题目的满分以及M次提交,其中每次提交包含用户的ID、题号及相应的得分。
每道题用户可能会提交多次,因此,只记录其最高得分。
然后,按照总分从高到低排序,若总分相同,则按照获得满分的题目个数从大到小排序;若前两者均相等,则按照用户ID从小到大排序,输出排序后的排名信息。
若某用户从未提交过代码,或者没有能通过编译的提交,则该用户不出现在最后的排名中。
需要注意的地方:
1.题目给出的user_id
和problem_id
均从1开始;
2.编译不通过时,partial_score_obtained
给出的结果为-1,但得分为0;
3.用户每个题目的得分,只记录最高分;
4.计算用户获得满分的题目个数时,需要考虑到同一道题用户可能会多次获得满分;
5.若某题用户未提交过,则该题的得分为-
;
6.若某用户从未提交过代码,或者没有能通过编译的提交,则该用户不需要输出。
坑点:用户id需要提前初始化,否则,无法通过最后一个测试点。
1 |
|