PAT_A1137#Final Grading

PAT_A1137#Final Grading

Source:

PAT A1137 Final Grading (25 分)

Description:

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 0 if Gmidterm​​>Gfinal​​, or Gfinal​​ will be taken as the final grade G. Here Gmidterm​​ 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 Gmidterm​​’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​​ Gmidterm​​ Gfinal​​ G

If some score does not exist, output “−” 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:

6 6 7
01234 880
a1903 199
ydjh2 200
wehu8 300
dx86w 220
missing 400
ydhfu77 99
wehu8 55
ydjh2 98
dx86w 88
a1903 86
01234 39
ydhfu77 88
a1903 66
01234 58
wehu8 84
ydjh2 82
missing 99
dx86w 81

Sample Output:

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

Keys:

  • 快乐模拟
  • map(C++ STL)
  • string(C++ STL)

Attention:

  • 四舍五入要用round()函数;
  • MAXSIZE最多有三倍的1E4;

Code:

  1 /*
  2 Data: 2019-05-26 21:12:36
  3 Problem: PAT_A1137#Final Grading
  4 AC: 55:00
  5 
  6 题目大意:
  7 获得证书需要,编程任务不少于200分,总分不少于60分
  8 如果期中>期末分数,则总分=期中*0.4+期末*0.6
  9 反之,总分=期末分数
 10 输入:
 11 第一行给出,完成编程的人数P,参加期中考试的人数M,参加期末考试的人数N,均<=1e4
 12 接下来给出各项分数;id不超过20位
 13 */
 14 
 15 #include<cstdio>
 16 #include<string>
 17 #include<camth>
 18 #include<map>
 19 #include<iostream>
 20 #include<algorithm>
 21 using namespace std;
 22 const int M=1e4+10;
 23 int pt=1,pass[M]={
   0};
 24 struct node
 25 {
 26     string id;
 27     int gp,gm,gf,g;
 28 }info[M],ans[M];
 29 map<string,int> mp;
 30 
 31 int ToInt(string s)
 32 {
 33     if(mp[s]==0)
 34     {
 35         mp[s]=pt;
 36         info[pt].id=s;
 37         info[pt].gm=-1;
 38         info[pt].gf=-1;
 39         return pt++;
 40     }
 41     else
 42         return mp[s];
 43 }
 44 
 45 bool cmp(node a, node b)
 46 {
 47     if(a.g != b.g)
 48         return a.g > b.g;
 49     else
 50         return a.id < b.id;
 51 }
 52 
 53 int main()
 54 {
 55 #ifdef    ONLINE_JUDGE
 56 #else
 57     freopen("Test.txt", "r", stdin);
 58 #endif
 59 
 60     int n,m,p,g;
 61     string s;
 62     scanf("%d%d%d", &n,&m,&p);
 63     for(int i=0; i<n; i++)
 64     {
 65         cin >> s >> g;
 66         int v=ToInt(s);
 67         info[v].gp=g;
 68         pass[v]++;
 69     }
 70     for(int i=0; i<m; i++)
 71     {
 72         cin >> s >> g;
 73         int v=ToInt(s);
 74         info[v].gm=g;
 75         if(pass[v])  pass[v]++;
 76     }
 77     for(int i=0; i<p; i++)
 78     {
 79         cin >> s >> g;
 80         int v=ToInt(s);
 81         info[v].gf=g;
 82         if(pass[v])  pass[v]++;
 83     }
 84     int cnt=0;
 85     for(int i=1; i<pt; i++)
 86     {
 87         if(pass[i]>=2 && info[i].gp>=200)
 88         {
 89             if(info[i].gm > info[i].gf)
 90                 info[i].g = (int)round(0.4*info[i].gm+0.6*info[i].gf);
 91             else
 92                 info[i].g = info[i].gf;
 93             if(info[i].g >= 60)
 94                 ans[cnt++] = info[i];
 95         }
 96     }
 97     sort(ans,ans+cnt,cmp);
 98     for(int i=0; i<cnt; i++)
 99     {
100         cout << ans[i].id;
101         printf(" %d %d %d %d\n", ans[i].gp,ans[i].gm,ans[i].gf,ans[i].g);
102     }
103 
104     return 0;
105 }

 

转载于:https://www.cnblogs.com/blue-lin/p/10932423.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/100892.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • 函数声明[通俗易懂]

    函数声明[通俗易懂]语法描述通过函数声明构造的函数是Function对象,所以拥有一切Function对象所有的属性,方法和行为。函数默认返回undefined,如果想返回其他值,函数必须使用return语句来返回

    2022年8月4日
    7
  • matlab如何导入txt数据画图形_matlab画复杂函数图像

    matlab如何导入txt数据画图形_matlab画复杂函数图像MATLAB读取txt文件数据绘制图像现有data.txt文件存储由数据采集卡读取到的6000000个数据。下面记录最基础的用MATLAB读取txt文件数据并绘制图像的代码。%关闭所有的Figure窗口closeall;%清除工作空间的所有变量,函数,和MEX文件clearall;%加载数据文件,并命名为AA=load(‘data.txt’);%矩阵A的规模,[行,列][m,n]=size(A);%绘制txt文件第一列的数据figure(1);plo

    2022年9月6日
    7
  • vue x 兼容iphone_作为前端你必须知道的iPhoneX适配

    ​1.iPhoneX的介绍屏幕尺寸我们熟知的iPhone系列开发尺寸概要如下:△iPhone各机型的开发尺寸转化成我们熟知的像素尺寸:△每个机型的多维度尺寸倍图其实就是像素尺寸和开发尺寸的倍率关系,但这只是外在的表现。倍图核心的影响因素在于PPI(DPI),了解屏幕密度与各尺寸的关系有助于我们深度理解倍率的概念:《基础知识学起来!为设计师量身打造的DPI指南》iPhone8在本次升级中,屏…

    2022年4月13日
    48
  • ZigBee协议栈简介和流程「建议收藏」

    ZigBee协议栈简介和流程「建议收藏」ZigBee协议栈实际上就是ZigBee协议的API接口一般步骤为:1.组网:调用协议栈的组网函数、加入网络函数,实现网络的建立与节点的加入2.发送:发送节点调用协议栈的无线数据发送函数,实现无线数据发送3.接收:接收节点调用协议栈的无线数据接收函数,实现无线数据接收大致流程:main()→osal_init_system()→osalInitTasks()→SampleAp

    2022年5月8日
    86
  • Mint-UI

    Mint-UI一、MUI不同于Mint-UI,MUI只是开发出来的一套很好用的代码片段,里面提供了配置的样式,配置的HTML代码段,类似于Bootstrap;而Mint-UI,是真正的组件库,是使用了Vue技术

    2022年7月2日
    26
  • free技术详解 lock_lock free的理解

    free技术详解 lock_lock free的理解转自:http://www.isnowfy.com/understand-to-lock-free/以前一直不明白lockfree是什么,后来发现原来是完全理解错了概念,lockfree看到大家有的翻译为无锁,有的翻译为锁无关,其实用不用锁和lockfree是不相关的,用了锁也可能是lockfree,而不用锁有可能不是lockfree。一个lockfree的解释是一个“锁无关”的程序能…

    2022年7月19日
    23

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号