#Lutece0926. Programming Contest Ranking
Programming Contest Ranking
Migrated from Lutece 926 Programming Contest Ranking
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Heilongjiang Programming Contest will end successfully! And your task is programming contest ranking. The following rules rankings:
- A problem is solved when it is accepted by the judges.
- Teams are ranked according to the most problems solved;
- Teams who solve the same number of problems are ranked by least total time. The total time is the sum of the time consumed for each problem solved. The time consumed for a solved problem is the time elapsed from the beginning of the contest to the submittal of the accepted run plus penalty minutes for every rejected run for that problem regardless of submittal time. Team(s) who firstly solved the problem will have no penalty in the problem. There is no time consumed for a problem that is not solved.
- Teams who are the same number of problems solved and the same total time are ranked by the most weighting number of problems solved;The weight of the problem is the floor of . where is the number of all teams, and is the number of teams who solved the problem. The weight of one problem will be 0 if there is no team solved the problem.
Input
The input contains multiple test cases. For each test case,first line contains two integers, and , is the number of all teams, is the number of problems;
Then following lines, there are items seprated by a space in each.line, corresponding the record of one team . The first item is the name of the team, not exceed letters. Then following items, each item is:
-\-
if the team did not submit for the problem;TT\-
if the team submitted times for the problem,but did not solve it.TT\FT
if the team submitted times for the problem, is the time elapsed from the beginning of the contest to the submittal of the accepted.
, Both and are integer.
Output
Output ranking result in lines.
The format of each line is:
Rank (width )
Name of team (width )
Number of problems solved (width )
Total time(width )
Weighting Number of problems solved (width )
Each item above align , seprated by a space.
Samples
6 6
Leifeng 8\135 1\20 1\57 5\230 6\- 3\283
Fighter 7\136 1\15 1\42 6\200 5\- 2\270
AlwaysAK 7\156 1\24 1\31 5\202 5\270 4\-
SoyOnceMore 5\- 6\- 3\- 2\75 -\- -\-
RpRpRp 5\- 3\35 10\- -\- -\- -\-
StartAcm 2\- 3\- 3\- 4\- 1\- -\-
1 Leifeng 5 845 9
2 AlwaysAK 5 883 12
3 Fighter 5 883 9
4 RpRpRp 1 75 1
4 SoyOnceMore 1 75 1
6 StartAcm 0 0 0
Resources
2011 Heilongjiang collegiate programming contest