首页 > 试题广场 >

PAT Ranking (25)

[编程题]PAT Ranking (25)
  • 热度指数:3428 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
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.

输入描述:
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.


输出描述:
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.
示例1

输入

2<br/>5<br/>1234567890001 95<br/>1234567890005 100<br/>1234567890003 95<br/>1234567890002 77<br/>1234567890004 85<br/>4<br/>1234567890013 65<br/>1234567890011 25<br/>1234567890014 100<br/>1234567890012 85

输出

9<br/>1234567890005 1 1 1<br/>1234567890014 1 2 1<br/>1234567890001 3 1 2<br/>1234567890003 3 1 2<br/>1234567890004 5 1 4<br/>1234567890012 5 2 2<br/>1234567890002 7 1 5<br/>1234567890013 8 2 3<br/>1234567890011 9 2 4

问题信息

难度:
26条回答 5588浏览

热门推荐

通过挑战的用户