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 G​mid−term​​>G​final​​, or G​final​​ will be taken as the final grade G. Here G​mid−term​​ and G​final​​ 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 G​p​​'s; the second one contains M mid-term scores G​mid−term​​'s; and the last one contains N final exam scores G​final​​'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 G​p​​ G​mid−term​​ G​final​​ 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;
  • 从总分计算公式可以看出来,不参加期末考试,最多拿40分,是不会得到证书的

Code:

 /*
Data: 2019-08-07 20:05:38
Problem: PAT_A1137#Final Grading
AC: 32:45 题目大意:
获得证书需要,编程任务不少于200分,总分不少于60分
如果期中>期末分数,则总分=期中*0.4+期末*0.6
反之,总分=期末分数
输入:
第一行给出,完成编程的人数P,参加期中考试的人数M,参加期末考试的人数N,均<=1e4
接下来给出各项分数;id不超过20位
*/
#include<cstdio>
#include<string>
#include<map>
#include<cmath>
#include<vector>
#include<iostream>
#include<algorithm>
using namespace std;
const int M=1e4+;
int pt=;
struct node
{
string id;
int gp,gm,gf,g;
}info[M],temp;
map<string,int> mp;
vector<node> ans; int Hash(string s)
{
if(mp[s]==)
mp[s]=pt++;
return mp[s];
} bool cmp(const node &a, const node &b)
{
if(a.g != b.g)
return a.g > b.g;
else
return a.id < b.id;
} int main()
{
#ifdef ONLINE_JUDGE
#else
freopen("Test.txt", "r", stdin);
#endif // ONLINE_JUDGE int n,m,p;
scanf("%d%d%d", &p,&m,&n);
for(int i=; i<p; i++)
{
temp = node{"",-,-,-,-};
cin >> temp.id >> temp.gp;
if(temp.gp<)
continue;
int pos = Hash(temp.id);
info[pos]=temp;
}
for(int i=; i<m; i++)
{
cin >> temp.id >> temp.gm;
if(mp[temp.id]==)
continue;
int pos = mp[temp.id];
info[pos].gm = temp.gm;
}
for(int i=; i<n; i++)
{
cin >> temp.id >> temp.gf;
if(mp[temp.id]==)
continue;
int pos = mp[temp.id];
info[pos].gf = temp.gf;
if(info[pos].gf >= info[pos].gm)
info[pos].g = info[pos].gf;
else
info[pos].g = (int)round((0.4)*info[pos].gm+(0.6)*info[pos].gf);
if(info[pos].g >= )
ans.push_back(info[pos]);
}
sort(ans.begin(),ans.end(),cmp);
for(int i=; i<ans.size(); i++)
printf("%s %d %d %d %d\n", ans[i].id.c_str(),ans[i].gp,ans[i].gm,ans[i].gf,ans[i].g); return ;
}

/*Data: 2019-08-07 20:05:38Problem: PAT_A1137#Final GradingAC: 32:45
题目大意:获得证书需要,编程任务不少于200分,总分不少于60分如果期中>期末分数,则总分=期中*0.4+期末*0.6反之,总分=期末分数输入:第一行给出,完成编程的人数P,参加期中考试的人数M,参加期末考试的人数N,均<=1e4接下来给出各项分数;id不超过20位*/#include<cstdio>#include<string>#include<map>#include<cmath>#include<vector>#include<iostream>#include<algorithm>using namespace std;const int M=1e4+10;int pt=1;struct node{    string id;    int gp,gm,gf,g;}info[M],temp;map<string,int> mp;vector<node> ans;
int Hash(string s){    if(mp[s]==0)        mp[s]=pt++;    return mp[s];}
bool cmp(const node &a, const node &b){    if(a.g != b.g)        return a.g > b.g;    else        return a.id < b.id;}
int main(){#ifdef ONLINE_JUDGE#else    freopen("Test.txt", "r", stdin);#endif // ONLINE_JUDGE
    int n,m,p;    scanf("%d%d%d", &p,&m,&n);    for(int i=0; i<p; i++)    {        temp = node{"",-1,-1,-1,-1};        cin >> temp.id >> temp.gp;        if(temp.gp<200)            continue;        int pos = Hash(temp.id);        info[pos]=temp;    }    for(int i=0; i<m; i++)    {        cin >> temp.id >> temp.gm;        if(mp[temp.id]==0)            continue;        int pos = mp[temp.id];        info[pos].gm = temp.gm;    }    for(int i=0; i<n; i++)    {        cin >> temp.id >> temp.gf;        if(mp[temp.id]==0)            continue;        int pos = mp[temp.id];        info[pos].gf = temp.gf;        if(info[pos].gf >= info[pos].gm)            info[pos].g = info[pos].gf;        else            info[pos].g = (int)round((0.4)*info[pos].gm+(0.6)*info[pos].gf);        if(info[pos].g >= 60)            ans.push_back(info[pos]);    }    sort(ans.begin(),ans.end(),cmp);    for(int i=0; i<ans.size(); i++)        printf("%s %d %d %d %d\n", ans[i].id.c_str(),ans[i].gp,ans[i].gm,ans[i].gf,ans[i].g);
    return 0;}

PAT_A1137#Final Grading的更多相关文章

  1. PAT 1137 Final Grading[一般][排序]

    1137 Final Grading(25 分) For a student taking the online course "Data Structures" on China ...

  2. A1137. Final Grading

    For a student taking the online course "Data Structures" on China University MOOC (http:// ...

  3. PAT A1137 Final Grading (25 分)——排序

    For a student taking the online course "Data Structures" on China University MOOC (http:// ...

  4. PAT 甲级 1137 Final Grading

    https://pintia.cn/problem-sets/994805342720868352/problems/994805345401028608 For a student taking t ...

  5. 1137 Final Grading (25 分)

    For a student taking the online course "Data Structures" on China University MOOC (http:// ...

  6. PAT 1137 Final Grading

    For a student taking the online course "Data Structures" on China University MOOC (http:// ...

  7. PAT甲级——A1137 Final Grading【25】

    For a student taking the online course "Data Structures" on China University MOOC (http:// ...

  8. 1137 Final Grading

    题意:排序题. 思路:通过unordered_map来存储考生姓名与其成绩信息结构体的映射,成绩初始化为-1,在读入数据时更新各个成绩,最后计算最终成绩并把符合条件的学生存入vector,再排序即可. ...

  9. PAT甲级目录

    树(23) 备注 1004 Counting Leaves   1020 Tree Traversals   1043 Is It a Binary Search Tree 判断BST,BST的性质 ...

随机推荐

  1. [bzoj3339]Rmq Problem||[bzoj3585]mex_线段树

    Rmq Problem bzoj-3339||mex bzoj-3585 题目大意:给定一个长度为n的数列a,多次讯问区间l,r中最小的不属于集合{$A_l,A_{l+1}...A_r$}的非负整数. ...

  2. [bzoj1468][poj1741]Tree_点分治

    Tree bzoj-1468 poj-1741 题目大意:给你一颗n个点的树,求树上所有路径边权和不大于m的路径条数. 注释:$1\le n\le 4\cdot 10^4$,$1\le m \le 1 ...

  3. 洛谷—— P3576 [POI2014]MRO-Ant colony

    https://www.luogu.org/problem/show?pid=3576 题目描述 The ants are scavenging an abandoned ant hill in se ...

  4. ZooKeeper配置文件常用配置项一览表(转)

     配置参数详解(主要是$ZOOKEEPER_HOME/conf/zoo.cfg文件) 参数名 说明 clientPort 客户端连接server的端口,即对外服务端口,一般设置为2181吧. data ...

  5. Supervisor-进程监控自动重启

    Supervisor是一个进程监控程序. 需求一:我现在有一个进程需要每时每刻不断的跑,但是这个进程又有可能由于各种原因有可能中断.当进程中断的时候我希望能自动重新启动它,此时,我就需要使用到了Sup ...

  6. UNIX环境编程学习——反思认识

     学习情况: 有关UNIX系统环境编程的学习时间用来非常长的时间.可是感觉效果还是不是太好,在中间经过了期末考试.用来非常长的时间用来学习专业课.就将该过程的学习放到了一边上,放假以后又回家造成了 ...

  7. SegmentFault 巨献 1024 程序猿游戏「红岸的呼唤」第一天任务攻略

    今天一不小心在微博上看到了SegmentFault的一条微博: 眼看今天就要过去了,那在这里说一下我的解题过程(事实上大家都知道了吧-=). 高速传送门:http://segmentfault.com ...

  8. 【Unity3D】 KeyCode 键码

    Key codes returned by Event.keyCode. These map directly to a physical key on the keyboard. KeyCode是由 ...

  9. LinkedHashMap源代码阅读

    LinkedHashMap LinkedHashMap内部採用了散列表和链表实现Map接口,并能够保证迭代的顺序,和HashMap不同,其内部维护一个指向全部元素的双向链表,其决定了遍历的顺序,一般是 ...

  10. bzoj2303

    并查集+数学 这道题网上好像有两种解法. 这位写的很可读:http://blog.csdn.net/unicornt_/article/details/51901225 然后看完大概就懂了做法,但是实 ...