PATA1025 PAT Ranking

举报
陈沧夜 发表于 2022/04/30 00:58:49 2022/04/30
【摘要】 1025 PAT Ranking Programming Ability Test (PAT) is organized by the College of Computer Science and Technology of Zhejiang University. Each test is supposed to run simu...

1025 PAT Ranking

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:


  
  1. 2
  2. 5
  3. 1234567890001 95
  4. 1234567890005 100
  5. 1234567890003 95
  6. 1234567890002 77
  7. 1234567890004 85
  8. 4
  9. 1234567890013 65
  10. 1234567890011 25
  11. 1234567890014 100
  12. 1234567890012 85

Sample Output:


  
  1. 9
  2. 1234567890005 1 1 1
  3. 1234567890014 1 2 1
  4. 1234567890001 3 1 2
  5. 1234567890003 3 1 2
  6. 1234567890004 5 1 4
  7. 1234567890012 5 2 2
  8. 1234567890002 7 1 5
  9. 1234567890013 8 2 3
  10. 1234567890011 9 2 4

 


  
  1. /*
  2. 1.Clarification:
  3. return registration_number final_rank location_number local_rank
  4. so we need struct informations such as number,grade,final_rank,location number,local_rank
  5. and woe use algorithm sort to sort the grade
  6. The time cost is:
  7. */
  8. #include <iostream>
  9. #include <string>
  10. #include <algorithm>
  11. #include<cstring>
  12. using namespace std;
  13. struct student{
  14. char number[13];
  15. int grade;
  16. int final_rank;
  17. int location_number;
  18. int local_rank;
  19. }stu[31000];
  20. bool cmp(student a,student b){
  21. if(a.grade!=b.grade)
  22. {
  23. return a.grade>b.grade;
  24. }
  25. else
  26. {
  27. return strcmp(a.number,b.number)<0;
  28. }
  29. }
  30. int main()
  31. {
  32. // freopen("C://坚果云//算法//PATA1025in.txt","r",stdin);
  33. // freopen("C://坚果云//算法//PATA1025out.txt","w",stdout);
  34. int N,K,num=0;
  35. scanf("%d",&N);
  36. for(int i=1;i<=N;i++)
  37. {
  38. scanf("%d",&K);
  39. for(int j=0;j<K;j++)
  40. {
  41. scanf("%s %d",&stu[num].number,&stu[num].grade);
  42. stu[num].location_number = i;
  43. num++;
  44. }
  45. sort(stu+num-K,stu+num,cmp);
  46. stu[num-K].local_rank = 1;
  47. for(int t=num-K+1;t<num;t++)
  48. {
  49. if(stu[t].grade!=stu[t-1].grade)
  50. {
  51. stu[t].local_rank=t+1-num+K;
  52. }
  53. else
  54. {
  55. stu[t].local_rank = stu[t-1].local_rank;
  56. }
  57. }
  58. }
  59. sort(stu,stu+num,cmp);
  60. printf("%d\n",num);
  61. int r=1;
  62. for(int i=0;i<num;i++)
  63. {
  64. if(i>0&&stu[i].grade!=stu[i-1].grade)
  65. {
  66. r=i+1;
  67. }
  68. printf("%s ",stu[i].number);
  69. printf("%d %d %d\n",r,stu[i].location_number,stu[i].local_rank);
  70. }
  71. // fclose(stdin);
  72. // fclose(stdout);
  73. return 0;
  74. }

 

文章来源: blog.csdn.net,作者:沧夜2021,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/CANGYE0504/article/details/88836224

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。