• pat basic 1095 解码PAT准考证


    PAT 准考证号由 4 部分组成:

    • 第 1 位是级别,即 T 代表顶级;A 代表甲级;B 代表乙级;
    • 第 2~4 位是考场编号,范围从 101 到 999;
    • 第 5~10 位是考试日期,格式为年、月、日顺次各占 2 位;
    • 最后 11~13 位是考生编号,范围从 000 到 999。

    现给定一系列考生的准考证号和他们的成绩,请你按照要求输出各种统计信息。

    输入格式:

    输入首先在一行中给出两个正整数 N(≤104)和 M(≤100),分别为考生人数和统计要求的个数。

    接下来 N 行,每行给出一个考生的准考证号和其分数(在区间 [0,100] 内的整数),其间以空格分隔。

    考生信息之后,再给出 M 行,每行给出一个统计要求,格式为:类型 指令,其中

    • 类型 为 1 表示要求按分数非升序输出某个指定级别的考生的成绩,对应的 指令 则给出代表指定级别的字母;
    • 类型 为 2 表示要求将某指定考场的考生人数和总分统计输出,对应的 指令 则给出指定考场的编号;
    • 类型 为 3 表示要求将某指定日期的考生人数分考场统计输出,对应的 指令 则给出指定日期,格式与准考证上日期相同。

    输出格式:

    对每项统计要求,首先在一行中输出 Case #: 要求,其中 # 是该项要求的编号,从 1 开始;要求 即复制输入给出的要求。随后输出相应的统计结果:

    • 类型 为 1 的指令,输出格式与输入的考生信息格式相同,即 准考证号 成绩。对于分数并列的考生,按其准考证号的字典序递增输出(题目保证无重复准考证号);
    • 类型 为 2 的指令,按 人数 总分 的格式输出;
    • 类型 为 3 的指令,输出按人数非递增顺序,格式为 考场编号 总人数。若人数并列则按考场编号递增顺序输出。

    如果查询结果为空,则输出 NA

    输入样例:

    1. 8 4
    2. B123180908127 99
    3. B102180908003 86
    4. A112180318002 98
    5. T107150310127 62
    6. A107180908108 100
    7. T123180908010 78
    8. B112160918035 88
    9. A107180908021 98
    10. 1 A
    11. 2 107
    12. 3 180908
    13. 2 999

    输出样例:

    1. Case 1: 1 A
    2. A107180908108 100
    3. A107180908021 98
    4. A112180318002 98
    5. Case 2: 2 107
    6. 3 260
    7. Case 3: 3 180908
    8. 107 2
    9. 123 2
    10. 102 1
    11. Case 4: 2 999
    12. NA

    解题思路:

    非常复杂的一道题啊,要先把数据读进来,再提取出各种信息。然后再根据要求分情况处理。我的做法是针对类型一的要求排序,其他两种情况不用排序也可以,把程序总体控制在O(N^2)以内应该就能顺利通过了。注意每种情况没有查询到结果的时候要输出NA,输出编号类的数据时要保留字符宽度。

    1. #include
    2. #include
    3. #include
    4. #define MAXN 14
    5. #define MAXROOMS 1000
    6. typedef struct _node *PtrN;
    7. typedef struct _node {
    8. char str[MAXN];
    9. char lv;
    10. int exam_no, exam_date, can_id, score;
    11. } Candidate;
    12. typedef struct _node2 *PtrP;
    13. typedef struct _node2 {
    14. int exam_no, candidates;
    15. } Pair;
    16. int compare1(const void *a, const void *b) {
    17. PtrN pa = (PtrN)a, pb = (PtrN)b;
    18. if ( pa->lv != pb->lv )
    19. return (int)(pa->lv - pb->lv);
    20. else if ( pa->score != pb->score )
    21. return pb->score - pa->score;
    22. else
    23. return strcmp(pa->str, pb->str);
    24. }
    25. int compare2(const void *a, const void *b) {
    26. PtrP pa = (PtrP)a, pb = (PtrP)b;
    27. return pb->candidates - pa->candidates;
    28. }
    29. int main(int argc, const char *argv[]) {
    30. int N, M, i, j, type;
    31. char temp[MAXN], strcode[MAXN];
    32. if ( scanf("%d %d", &N, &M)==EOF ) printf("error\n");
    33. Candidate students[N];
    34. for ( i=0; i
    35. if ( scanf("%s %d", students[i].str, &students[i].score)==EOF ) printf("error\n");
    36. students[i].lv = students[i].str[0];
    37. memcpy(temp, &students[i].str[1], 3);
    38. temp[3] = '\0';
    39. students[i].exam_no = atoi(temp);
    40. memcpy(temp, &students[i].str[10], 3);
    41. temp[3] = '\0';
    42. students[i].can_id = atoi(temp);
    43. memcpy(temp, &students[i].str[4], 6);
    44. temp[6] = '\0';
    45. students[i].exam_date = atoi(temp);
    46. }
    47. qsort(students, N, sizeof(Candidate), compare1);
    48. for ( i=1; i<=M; ++i ) {
    49. if ( scanf("%d %s", &type, strcode)==EOF ) printf("error\n");
    50. printf("Case %d: %d %s\n", i, type, strcode);
    51. int flag = 1, count = 0, sum = 0, code = atoi(strcode);
    52. char level = strcode[0];
    53. Pair stu_in_room[MAXROOMS] = {{0,0},};
    54. switch ( type ) {
    55. case 1:
    56. for ( j=0; j
    57. if ( students[j].lv == level ) {
    58. printf("%s %d\n", students[j].str, students[j].score);
    59. flag = 0;
    60. }
    61. }
    62. if ( flag ) printf("NA\n");
    63. break;
    64. case 2:
    65. for ( j=0; j
    66. if ( students[j].exam_no == code ) {
    67. sum += students[j].score;
    68. ++count;
    69. flag = 0;
    70. }
    71. }
    72. if ( flag )
    73. printf("NA\n");
    74. else
    75. printf("%d %d\n", count, sum);
    76. break;
    77. case 3:
    78. for ( j=0; j
    79. if ( students[j].exam_date == code ) {
    80. stu_in_room[students[j].exam_no].exam_no = students[j].exam_no;
    81. ++stu_in_room[students[j].exam_no].candidates;
    82. flag = 0;
    83. }
    84. }
    85. if ( flag ) {
    86. printf("NA\n");
    87. } else {
    88. qsort(stu_in_room, MAXROOMS, sizeof(Pair), compare2);
    89. for ( j=0; j
    90. if ( stu_in_room[j].candidates == 0 ) break;
    91. printf("%03d %d\n", stu_in_room[j].exam_no, stu_in_room[j].candidates);
    92. }
    93. }
    94. break;
    95. default:
    96. printf("NA\n");
    97. }
    98. }
    99. return EXIT_SUCCESS;
    100. }

  • 相关阅读:
    Python爬虫实战(基础篇)—13获取《人民网》【最新】【国内】【国际】写入Word(附完整代码)
    很详细的Django开发入门详解(图文并茂)
    渔业安全生产综合管理指挥系统-航迹数据优化方案
    开发微信小程序的下载安装及入门
    【MySQL】MySQL的安装
    Pohlig-Hellman算法解决DLP问题
    基于元数据的无代码平台存储设计
    细粒度特征提取和定位用于目标检测:PPCNN
    qt中json类
    windows10 英文路径下文件显示中文名称
  • 原文地址:https://blog.csdn.net/herbertyellow/article/details/126274933