pat甲级1012
1012 The Best Rank (25)(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
由于C,M,E三科分数均为[0, 100]整数,因此可用数组cnt存储每个分数的人数,然后累加就可以得到每个分数对应的名次。
而平均分不是整数,先将平均分排序,然后用二分查找的方法找出其对应的名次。
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std; struct grade
{
int s[];
double A;
};
int cnt[][];
int cnt2[][]; int avgRank(vector<double> avg, double d); int main()
{
int n, m;
cin >> n >> m;
map<int, grade> mapp;
vector<double> avg; int id, i, j;
grade g;
for (i = ; i < n; i++)
{
cin >> id;
g.A = ;
for (j = ; j < ; j++)
{
cin >> g.s[j];
g.A += (double)g.s[j];
cnt[j][g.s[j]]++;
}
g.A /= ;
avg.push_back(g.A);
mapp[id] = g;
} cnt2[][] = cnt2[][] = cnt2[][] = ;
for (i = ; i >= ; i--)
{
for (j = ; j < ; j++)
cnt2[j][i] = cnt2[j][i + ] + cnt[j][i + ];
} sort(avg.begin(), avg.end()); int min, s, t;
char arr[] = { 'C', 'M', 'E', 'A' };
for (i = ; i < m; i++)
{
min = ;
cin >> id;
if (mapp.find(id) == mapp.end())
{
cout << "N/A" << endl;
continue;
}
for (j = ; j < ; j++)
{
t = cnt2[j][mapp[id].s[j]];
if ( t < min)
{
min = t;
s = j;
}
}
t = avgRank(avg, mapp[id].A);
if (t <= min)
{
min = t;
s = ;
}
cout << min << " " << arr[s] << endl;
}
return ;
} int avgRank(vector<double> avg, double d)
{
int mid = -, i = , j = avg.size() - ;
while (i <= j)
{
mid = (i + j) / ;
if (d > avg[mid])
i = mid + ;
else if (d == avg[mid])
break;
else
j = mid - ;
}
return avg.size() - mid;
}
提交时发现直接把平均分四舍五入取整也可以通过:
#include <iostream> #include <map>
using namespace std; struct grade
{
int s[];
}; int cnt[][];
int cnt2[][]; int main()
{
int n, m;
cin >> n >> m;
map<int, grade> mapp; int id, i, j;
grade g;
for (i = ; i < n; i++)
{
cin >> id;
g.s[] = ;
for (j = ; j < ; j++)
{
cin >> g.s[j];
g.s[] += g.s[j];
cnt[j][g.s[j]]++;
}
g.s[] = g.s[] / 3.0 + 0.5;
cnt[][g.s[]]++;
mapp[id] = g;
} for (i = ; i < ; i++)
{
cnt2[i][] = ;
for (j = ; j >= ; j--)
cnt2[i][j] = cnt2[i][j + ] + cnt[i][j + ];
}
int min, s, t;
char arr[] = { 'A', 'C', 'M', 'E' };
for (i = ; i < m; i++)
{
min = ;
cin >> id;
if (mapp.find(id) == mapp.end())
{
cout << "N/A" << endl;
continue;
}
for (j = ; j < ; j++)
{
t = cnt2[j][mapp[id].s[j]];
if ( t < min)
{
min = t;
s = j;
}
}
cout << min << " " << arr[s] << endl;
}
return ;
}
pat甲级1012的更多相关文章
- PAT甲级1012. The Best Rank
PAT甲级1012. The Best Rank 题意: 为了评估我们第一年的CS专业学生的表现,我们只考虑他们的三个课程的成绩:C - C编程语言,M - 数学(微积分或线性代数)和E - 英语.同 ...
- PAT——甲级1012:The Best Rank(有坑)
1012 The Best Rank (25 point(s)) To evaluate the performance of our first year CS majored students, ...
- PAT 甲级 1012 The Best Rank
https://pintia.cn/problem-sets/994805342720868352/problems/994805502658068480 To evaluate the perfor ...
- PAT甲级1012题解——选择一种合适数据存储方式能使题目变得更简单
题目分析: 本题的算法并不复杂,主要是要搞清楚数据的存储方式(选择一种合适的方式存储每个学生的四个成绩很重要)这里由于N的范围为10^6,故选择结构体来存放对应下标为学生的id(N只有2000的范围, ...
- PAT 甲级 1012 The Best Rank (25 分)(结构体排序)
题意: 为了评估我们第一年的CS专业学生的表现,我们只考虑他们的三个课程的成绩:C - C编程语言,M - 数学(微积分或线性代数)和E - 英语.同时,我们鼓励学生强调自己的最优秀队伍 - 也就是说 ...
- PAT甲级——1012 The Best Rank
PATA1012 The Best Rank To evaluate the performance of our first year CS majored students, we conside ...
- PAT甲级题解(慢慢刷中)
博主欢迎转载,但请给出本文链接,我尊重你,你尊重我,谢谢~http://www.cnblogs.com/chenxiwenruo/p/6102219.html特别不喜欢那些随便转载别人的原创文章又不给 ...
- PAT甲级考前整理(2019年3月备考)之二,持续更新中.....
PAT甲级考前整理之一网址:https://www.cnblogs.com/jlyg/p/7525244.html,主要总结了前面131题的类型以及易错题及坑点. PAT甲级考前整理三网址:https ...
- PAT甲级考前整理(2019年3月备考)之一
转载请注明出处:https://www.cnblogs.com/jlyg/p/7525244.html 终于在考前,刷完PAT甲级131道题目,不容易!!!每天沉迷在刷题之中而不能超脱,也是一种 ...
随机推荐
- vue 绑定属性(index)
<el-menu-item v-for="item in links" :key="item.id" v-bind:index="item.id ...
- Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2)D(思维,DP,字符串)
#include<bits/stdc++.h>using namespace std;char c[2007][2007];char ans[4007];int s[2007][2007] ...
- struts2学习笔记——常见报错及解决方法汇总(持续更新)
操作环境:(1)Tomcat 7.0.72.0 (2)OS Name: Windows 7 (3)JVM Version: 1.8.0_25-b18 (4)eclipse Version: Ke ...
- Spark内核概述
提交Spark程序的机器一般一定和Spark集群在同样的网络环境中(Driver频繁和Executors通信),且其配置和普通的Worker一致 1. Driver: 具有main方法的,初始化 Sp ...
- 谢特——后缀数组+tire 树
题目 [题目描述] 由于你成功地在 $ \text{1 s} $ 内算出了上一题的答案,英雄们很高兴并邀请你加入了他们的游戏.然而进入游戏之后你才发现,英雄们打的游戏和你想象的并不一样…… 英雄们打的 ...
- Java基础--常用API--java.lang.Object
一.简述 1.Object类是所有类的父类,即直接或间接的继承java.lang.Object类.省略了extends Object. 2.方法 (1)protected native Object ...
- Codeforces Round #129 (Div. 2) C
Description The Little Elephant very much loves sums on intervals. This time he has a pair of intege ...
- Spring配置文件没有提示问题+log4j
1.Spring中引入schema约束,把约束文件引入Myeclipse (1)复制约束路径http://www.springframework.org/schema/beans/spring-bea ...
- C#对象和集合初始值设定项
对象初始值设定项 使用对象初始值设定项,你可以在创建对象时向对象的任何可访问字段或属性分配值,而无需调用后跟赋值语句行的构造函数. 利用对象初始值设定项语法,你可为构造函数指定参数或忽略参数(以及括号 ...
- java环境安装(win7)
首先,你应该已经安装了 java 的 JDK 了,笔者安装的是:jdk-7u13-windows-x64 接下来主要讲怎么配置 java 的环境变量,也是为了以后哪天自己忘记了做个备份 1.进入&qu ...