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. 洛谷——P1106 删数问题

    https://www.luogu.org/problem/show?pid=1106 题目描述 键盘输入一个高精度的正整数N,去掉其中任意k个数字后剩下的数字按原左右次序将组成一个新的正整数.编程对 ...

  2. JDK(Java Development Kit)内置常用自带工具一览(转)

    注意:可能随着JDK的版本升级,工具也会随着增多. JDK(Java Development Kit)是Java程序员最核心的开发工具,没有之一. JDK是一个功能强大的Java开发套装,它不仅仅为我 ...

  3. gap lock/next-key lock浅析Basic-Paxos协议日志同步应用

    http://www.cnblogs.com/renolei/p/4673842.html 当InnoDB在判断行锁是否冲突的时候, 除了最基本的IS/IX/S/X锁的冲突判断意外, InnoDB还将 ...

  4. 前端控制器是整个MVC框架中最为核心的一块,它主要用来拦截符合要求的外部请求,并把请求分发到不同的控制器去处理,根据控制器处理后的结果,生成相应的响应发送到客户端。前端控制器既可以使用Filter实现(Struts2采用这种方式),也可以使用Servlet来实现(spring MVC框架)。

    本文转自http://www.cnblogs.com/davidwang456/p/4090058.html 感谢作者 前端控制器是整个MVC框架中最为核心的一块,它主要用来拦截符合要求的外部请求,并 ...

  5. array_change_key_case()

    定义和用法 array_change_key_case() 函数将指定数组的所有的键进行大小写转换. 如果数组的键(索引)为数字则不发生变化.如果未提供第二个参数,则默认转换为小写. 语法 array ...

  6. codeforces 391E2 (【Codeforces Rockethon 2014】E2)

    题目:http://codeforces.com/problemset/problem/391/E2    题意:有三棵树.每棵树有ni个结点,加入两条边把这三棵树连接起来,合并成一棵树.使得合并的树 ...

  7. 基于QT的多线程server

    // thread.cpp #include "thread.h" Thread::Thread(int socketDescriptor, QObject *parent) : ...

  8. [ACM] POJ 1942 Paths on a Grid (组合)

    Paths on a Grid Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 21297   Accepted: 5212 ...

  9. 一个简单RPC框架是怎样炼成的(I)——开局篇

    开场白,这是一个关于RPC的相关概念的普及篇系列,主要是通过一步步的调整,提炼出一个相对完整的RPC框架. RPC(Remote Procedure Call Protocol)--远程过程调用协议, ...

  10. Django网站管理--ModelAdmin

    class AuthorAdmin(admin.ModelAdmin): list_display=('name', 'age', 'sex') #指定要显示的字段 search_fields=('n ...