1012. The Best Rank (25)
To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C Programming Language, M - Mathematics (Calculus or Linear Algebra), and E - English. At the mean time, we encourage students by emphasizing on their best ranks -- that is, among the four ranks with respect to the three courses and the average grade, we print the best rank for each student.
For example, The grades of C, M, E and A - Average of 4 students are given as the following:
StudentID C M E A
310101 98 85 88 90
310102 70 95 88 84
310103 82 87 94 88
310104 91 91 91 91
Then the best ranks for all the students are No.1 since the 1st one has done the best in C Programming Language, while the 2nd one in Mathematics, the 3rd one in English, and the last one in average.
Input
Each input file contains one test case. Each case starts with a line containing 2 numbers N and M (<=2000), which are the total number of students, and the number of students who would check their ranks, respectively. Then N lines follow, each contains a student ID which is a string of 6 digits, followed by the three integer grades (in the range of [0, 100]) of that student in the order of C, M and E. Then there are M lines, each containing a student ID.
Output
For each of the M students, print in one line the best rank for him/her, and the symbol of the corresponding rank, separated by a space.
The priorities of the ranking methods are ordered as A > C > M > E. Hence if there are two or more ways for a student to obtain the same best rank, output the one with the highest priority.
If a student is not on the grading list, simply output "N/A".
Sample Input
5 6
310101 98 85 88
310102 70 95 88
310103 82 87 94
310104 91 91 91
310105 85 90 90
310101
310102
310103
310104
310105
999999
Sample Output
1 C
1 M
1 E
1 A
3 A
N/A 题目不难,就是自己代码写的好渣..
就有一个情况第一次没考虑到,就是出现相同排名的时候,修改后就过了
#include <iostream>
#include <map>
#include <cstdio> using namespace std; typedef struct Student{
string ID;
int c;
int m;
int e;
int a;
}Student; Student s[];
string CID[];
map<string,int> a;
map<string,int> c;
map<string,int> m;
map<string,int> e; int main()
{
int n,k;
char t;
cin>>n>>k;
for(int i=;i<n;i++){
cin>>s[i].ID>>s[i].c>>s[i].m>>s[i].e;
s[i].a=(s[i].c+s[i].m+s[i].e)/;
}
Student temp;
for(int i=;i<n;i++){
for(int j=i;j<n;j++){
if(s[i].a<s[j].a){
temp=s[i];
s[i]=s[j];
s[j]=temp;
}
}
}
a[s[].ID]=;
for(int i=;i<n;i++){
if(s[i].a==s[i-].a) a[s[i].ID]=a[s[i-].ID];
else a[s[i].ID]=i+;
} for(int i=;i<n;i++){
for(int j=i;j<n;j++){
if(s[i].c<s[j].c){
temp=s[i];
s[i]=s[j];
s[j]=temp;
}
}
}
c[s[].ID]=;
for(int i=;i<n;i++){
if(s[i].c==s[i-].c) c[s[i].ID]=c[s[i-].ID];
else c[s[i].ID]=i+;
} for(int i=;i<n;i++){
for(int j=i;j<n;j++){
if(s[i].m<s[j].m){
temp=s[i];
s[i]=s[j];
s[j]=temp;
}
}
}
m[s[].ID]=;
for(int i=;i<n;i++){
if(s[i].m==s[i-].m) m[s[i].ID]=m[s[i-].ID];
else m[s[i].ID]=i+;
} for(int i=;i<n;i++){
for(int j=i;j<n;j++){
if(s[i].e<s[j].e){
temp=s[i];
s[i]=s[j];
s[j]=temp;
}
}
}
e[s[].ID]=;
for(int i=;i<n;i++){
if(s[i].e==s[i-].e) e[s[i].ID]=e[s[i-].ID];
else e[s[i].ID]=i+;
} for(int i=;i<k;i++){
cin>>CID[i];
} for(int i=;i<k;i++){
int min=;
if (a.count(CID[i])==) {cout<<"N/A"<<endl;}
else{
if(a[CID[i]]<min) {min=a[CID[i]];t='A';}
if(c[CID[i]]<min) {min=c[CID[i]];t='C';}
if(m[CID[i]]<min) {min=m[CID[i]];t='M';}
if(e[CID[i]]<min) {min=e[CID[i]];t='E';}
cout<<min<<" "<<t<<endl;
}
} return ;
}
1012. The Best Rank (25)的更多相关文章
- PAT甲 1012. The Best Rank (25) 2016-09-09 23:09 28人阅读 评论(0) 收藏
1012. The Best Rank (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue To eval ...
- 1012 The Best Rank (25分) vector与结构体排序
1012 The Best Rank (25分) To evaluate the performance of our first year CS majored students, we con ...
- 【PAT】1012. The Best Rank (25)
题目链接: http://pat.zju.edu.cn/contests/pat-a-practise/1012 题目描述: To evaluate the performance of our fi ...
- 1012 The Best Rank (25)(25 point(s))
problem To evaluate the performance of our first year CS majored students, we consider their grades ...
- PAT 甲级 1012 The Best Rank (25 分)(结构体排序)
题意: 为了评估我们第一年的CS专业学生的表现,我们只考虑他们的三个课程的成绩:C - C编程语言,M - 数学(微积分或线性代数)和E - 英语.同时,我们鼓励学生强调自己的最优秀队伍 - 也就是说 ...
- 1012 The Best Rank (25 分)
To evaluate the performance of our first year CS majored students, we consider their grades of three ...
- PAT (Advanced Level) 1012. The Best Rank (25)
简单排序题. 注意:分数相同的人排名相同. #include<iostream> #include<cstring> #include<cmath> #includ ...
- PAT甲题题解-1012. The Best Rank (25)-排序水题
排序,水题因为最后如果一个学生最好的排名有一样的,输出的课程有个优先级A>C>M>E那么按这个优先级顺序进行排序每次排序前先求当前课程的排名然后再与目前最好的排名比较.更新 至于查询 ...
- 【PAT甲级】1012 The Best Rank (25 分)
题意: 输入两个整数N,M(<=2000),接着分别输入N个学生的ID,C语言成绩,数学成绩和英语成绩. M次询问,每次输入学生ID,如果该ID不存在则输出N/A,存在则输出该学生排名最考前的一 ...
随机推荐
- Ubuntu16.04安装vim插件YouCompleteMe
原文 1 下载 git clone --recursive git://github.com/Valloric/YouCompleteMe 如果执行该命令没报错, 就ok了. 但是中途有可能会断掉, ...
- PRML读书笔记——3 Linear Models for Regression
Linear Basis Function Models 线性模型的一个关键属性是它是参数的一个线性函数,形式如下: w是参数,x可以是原始的数据,也可以是关于原始数据的一个函数值,这个函数就叫bas ...
- 6周学习计划,攻克JavaScript难关(React/Redux/ES6 etc.)
作者:余博伦链接:https://zhuanlan.zhihu.com/p/23412169来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明出处. 和大家一样,最近我也看了Jo ...
- 1.NoSql简介
NoSQL,指的是非关系型的数据库.随着互联网web2.0网站的兴起,传统的关系数据库在应付web2.0网站,特别是超大规模和高并发的SNS类型的web2.0纯动态网站已经显得力不从心,暴露了很多难以 ...
- word record about IR target detecting and tracking
1 is submerged in background clutter 淹没在背景杂波中 2 performe poorly for the dim small targets in sever c ...
- Java线程间通信方式剖析——Java进阶(四)
原创文章,同步发自作者个人博客,转载请在文章开头处以超链接注明出处 http://www.jasongj.com/java/thread_communication/ CountDownLatch C ...
- Scala基础语法
/* 学慕课网上<Scala程序设计>课程跟着敲的代码 作为代码参考也是很好的 在scala_ide.org上下载eclipse IDE,新建一个worksheet,就可以像在xcode的 ...
- 中文乱码~Windows 7
1.安装匹配的中文语言包 2.安装中文字体
- 闲鱼demo
编程是一种美德,是促使一个人不断向上发展的一种原动力 -----–以下是正文------- 最近好多app的底部标签导航使用以下形式了,所以我们就来学习一下它是如何实现的. 先看效果: 中间的&quo ...
- Dynamics AX 2012 在BI分析中建立数据仓库的必要性
AX系统已有的BI分析架构 对于AX 的BI分析架构,相信大家都了解,可以看Reinhard之前的译文[译]Dynamics AX 2012 R2 BI系列-分析的架构 . AX 的BI分析架构的优势 ...