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=(G​mid−term​​×40%+G​final​​×60%) 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
#include<iostream>
#include<algorithm>
#include<string>
#include<map>
using namespace std;
typedef struct NODE{
string id;
int Gp, Gm, Gf, G, valid;
NODE(){
Gp = -;
Gm = -;
Gf = -;
}
}info;
map<string, int> mp;
int pt = ;
info stu[];
bool cmp(info a, info b){
if(a.valid != b.valid){
return a.valid > b.valid;
}else{
if(a.G != b.G)
return a.G > b.G;
else{
return a.id < b.id;
}
}
}
int main(){
int P, M, N;
scanf("%d%d%d", &P, &M, &N);
for(int i = ; i < P; i++){
string ss;
int gp, index;
cin >> ss >> gp;
if(mp.count(ss) == ){
mp[ss] = pt++;
index = pt - ;
}else index = mp[ss];
stu[index].Gp = gp;
stu[index].id = ss;
}
for(int i = ; i < M; i++){
string ss;
int mm, index;
cin >> ss >> mm;
if(mp.count(ss) == ){
mp[ss] = pt++;
index = pt - ;
}else index = mp[ss];
stu[index].Gm = mm;
stu[index].id = ss;
}
for(int i = ; i < N; i++){
string ss;
int gn, index;
cin >> ss >> gn;
if(mp.count(ss) == ){
mp[ss] = pt++;
index = pt - ;
}else index = mp[ss];
stu[index].Gf = gn;
stu[index].id = ss;
}
int cnt = ;
for(int i = ; i < pt; i++){
double temp = ;
if(stu[i].Gp < || stu[i].Gf == -){
stu[i].valid = -;
continue;
}
if(stu[i].Gm > stu[i].Gf){
temp = 0.6 * stu[i].Gf + 0.4 * stu[i].Gm + 0.5;
stu[i].G = (int)temp;
}else stu[i].G = stu[i].Gf;
if(stu[i].G >= && stu[i].G <= ){
stu[i].valid = ;
cnt++;
}
else stu[i].valid = -;
}
sort(stu, stu + pt, cmp);
for(int i = ; i < cnt; i++){
cout << stu[i].id << " " << stu[i].Gp << " " << stu[i].Gm << " " << stu[i].Gf << " " << stu[i].G << endl;
}
cin >> N;
return ;
}

总结:

1、由于学生id是字母型,需要使用map来保存id到数组下标的映射。

2、计算G时出现小数需要向上取整,可以(int)(计算结果+0.5)。

A1137. Final Grading的更多相关文章

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

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

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

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

  3. PAT_A1137#Final Grading

    Source: PAT A1137 Final Grading (25 分) Description: For a student taking the online course "Dat ...

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

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

  5. PAT 甲级 1137 Final Grading

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

  6. 1137 Final Grading (25 分)

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

  7. PAT 1137 Final Grading

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

  8. 1137 Final Grading

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

  9. PAT (Advanced Level) Practice(更新中)

    Source: PAT (Advanced Level) Practice Reference: [1]胡凡,曾磊.算法笔记[M].机械工业出版社.2016.7 Outline: 基础数据结构: 线性 ...

随机推荐

  1. vue2.0生命周期

    https://www.cnblogs.com/goloving/p/8616989.html(copy )

  2. python之路-字符串

    一.类型转换 a = 10 print(type(a)) # <class 'int'> d = str(a) # 把数字转换成str print(type(d)) # <class ...

  3. Yii的数值比较验证器

    该验证器比对两个特定输入值之间的关系 是否与 operator 属性所指定的相同. compareAttribute:用于与原属性相比对的属性名称. 当该验证器被用于验证某目标属性时, 该属性会默认为 ...

  4. vs code軟件操作

    https://www.imooc.com/article/39349 https://www.html.cn/archives/8144

  5. U68464 滑稽树上滑稽果(guo)

    U68464 滑稽树上滑稽果(guo) 题目描述 小小迪有 n 个约会对象,每个对象有一个约会时长 p[i],小小迪 想尽可能多的去完成他的约会(假设小小迪可以瞬移),每个对象还有 一个忍耐时间 q[ ...

  6. 【数学建模】day02-整数规划

    基本类似于中学讲的整数规划--线性规划中变量约束为整数的情形. 目前通用的解法适合整数线性规划.不管是完全整数规划(变量全部约束为整数),还是混合整数规划(变量既有整数又有实数),MATLAB都提供了 ...

  7. 常用模块collections

    collections模块 在内置数据类型(dict.list.set.tuple)的基础上,collections模块还提供了几个额外的数据类型:Counter.deque.defaultdict. ...

  8. #191 sea(动态规划)

    假设已经求出了i个点j个桥的连通图数量f[i][j],容易由此推出最终答案,套路地枚举1号点所在连通块大小即可. 假设已经求出了i个点的边双连通图数量h[i],考虑由此推出f[i][j].可以枚举其中 ...

  9. Python中pandas模块解析

    Pandas基于两种数据类型: series 与 dataframe . 1.Series 一个series是一个一维的数据类型,其中每一个元素都有一个标签.类似于Numpy中元素带标签的数组.其中, ...

  10. Python小爬虫——抓取豆瓣电影Top250数据

    python抓取豆瓣电影Top250数据 1.豆瓣地址:https://movie.douban.com/top250?start=25&filter= 2.主要流程是抓取该网址下的Top25 ...