• PAT 1137 Final Grading


    1137 Final Grading

    For a student taking the online course "Data Structures" on China University MOOC (http://www.icourse163.org/), to be qualified for a certificate, he/she must first obtain no less than 200 points from the online programming assignments, and then receive a final grade no less than 60 out of 100. The final grade is calculated by G=(Gmid−term​×40%+Gfinal​×60%) if Gmid−term​>Gfinal​, or Gfinal​ will be taken as the final grade G. Here Gmid−term​ and Gfinal​ are the student's scores of the mid-term and the final exams, respectively.

    The problem is that different exams have different grading sheets. Your job is to write a program to merge all the grading sheets into one.

    Input Specification:

    Each input file contains one test case. For each case, the first line gives three positive integers: P , the number of students having done the online programming assignments; M, the number of students on the mid-term list; and N, the number of students on the final exam list. All the numbers are no more than 10,000.

    Then three blocks follow. The first block contains P online programming scores Gp​'s; the second one contains M mid-term scores Gmid−term​'s; and the last one contains N final exam scores Gfinal​'s. Each score occupies a line with the format: StudentID Score, where StudentID is a string of no more than 20 English letters and digits, and Score is a nonnegative integer (the maximum score of the online programming is 900, and that of the mid-term and final exams is 100).

    Output Specification:

    For each case, print the list of students who are qualified for certificates. Each student occupies a line with the format:

    StudentID Gp​ Gmid−term​ Gfinal​ G

    If some score does not exist, output "−1" instead. The output must be sorted in descending order of their final grades (G must be rounded up to an integer). If there is a tie, output in ascending order of their StudentID's. It is guaranteed that the StudentID's are all distinct, and there is at least one qullified student.

    Sample Input:

    1. 6 6 7
    2. 01234 880
    3. a1903 199
    4. ydjh2 200
    5. wehu8 300
    6. dx86w 220
    7. missing 400
    8. ydhfu77 99
    9. wehu8 55
    10. ydjh2 98
    11. dx86w 88
    12. a1903 86
    13. 01234 39
    14. ydhfu77 88
    15. a1903 66
    16. 01234 58
    17. wehu8 84
    18. ydjh2 82
    19. missing 99
    20. dx86w 81

    Sample Output:

    1. missing 400 -1 99 99
    2. ydjh2 200 98 82 88
    3. dx86w 220 88 81 84
    4. wehu8 300 55 84 84

    总结:这道题目本来不难的,但是做了很长的时间,用map标记合法的名字的序号,如果右面还有数据输入,直接使用d[string]的值找到对应数组的下标,方便很多 

    代码:

    1. #include
    2. #include
    3. #include
    4. #include
    5. using namespace std;
    6. struct node{
    7. string id;
    8. int gp,gm=-1,gf=-1,g=0;
    9. };
    10. bool cmp(node a,node b){
    11. if(a.g!=b.g) return a.g>b.g;
    12. return a.id
    13. }
    14. int main(){
    15. int p,m,n;
    16. scanf("%d%d%d",&p,&m,&n);
    17. vector d(p+3);//这里为什么以p来定义d数组的大小呢,因为题目要求只有在编程分数合格的人才有资格排名
    18. mapint> t;
    19. string s;
    20. int w,index=1;
    21. for(int i=0;i
    22. cin >> s >> w;
    23. if(w<200 || w>900) continue;
    24. t[s]=index++;
    25. d[t[s]].id=s;
    26. d[t[s]].gp=w;
    27. }
    28. for(int i=0;i
    29. cin >> s >> w;
    30. if(t[s]) d[t[s]].gm=w;
    31. }
    32. for(int i=0;i
    33. cin >> s >> w;
    34. if(t[s]){
    35. d[t[s]].gf=w;
    36. if(d[t[s]].gm>w) d[t[s]].g=0.6*w+0.4*d[t[s]].gm+0.5;
    37. else d[t[s]].g=w;
    38. }
    39. }
    40. sort(d.begin(),d.end(),cmp);
    41. for(int i=0;i
    42. if(d[i].g!=0 && d[i].g>=60){
    43. cout << d[i].id;
    44. printf(" %d %d %d %d\n",d[i].gp,d[i].gm,d[i].gf,d[i].g);
    45. }
    46. }
    47. return 0;
    48. }

    好好学习,天天向上!

    我要考研!

  • 相关阅读:
    【Linux 系统】gcc/g++使用零星整理
    【Proteus仿真】Arduino UNO +74C922键盘解码驱动4X4矩阵键盘
    【DDD】学习笔记-发布者—订阅者模式
    【论文精读】Diffusion Transformer(DiT)
    66页三级医院智慧医院 信息化建设规划
    阿里云代理商:阿里云跨分部抵销前营收267.6亿元,跨分部抵销后营收207.57亿元,抵销后营收环比增长达17.37%。
    elasticsearch高亮之highlight原理
    Python txt文件转成xlsx文件
    【Node.js】深度解析模块化的那些事
    用html编写的简易新闻页面
  • 原文地址:https://blog.csdn.net/weixin_50679551/article/details/127561379