• 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. }

    好好学习,天天向上!

    我要考研!

  • 相关阅读:
    自动编码器(AE)生成Mnist手写数字集,基于tensorflow和keras实现
    3.6 万颗星!开源 Web 服务器后起之秀,自带免费 HTTPS 开箱即用
    Java之面向对象三大特征
    大数据高级开发工程师——Spark学习笔记(7)
    linux的su:鉴定故障,或当密码正确
    MySQL性能调优篇(8)-NoSQL与MySQL的比较
    Android 11编译第三弹 ADB开启ROOT权限
    x汽车登陆网站登陆rsa加密逆向
    kettle应用-数据库表插入/更新
    mannose-PEG-Alkyne|甘露糖-聚乙二醇-巯基|巯基修饰甘露糖
  • 原文地址:https://blog.csdn.net/weixin_50679551/article/details/127561379