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 ;
}


最新文章

  1. Python 和 R 数据分析/挖掘工具互查
  2. uploadify参数
  3. transform应用详解
  4. JAVA获取当前系统时间System.currentTimeMillis()
  5. c# gzip解压缩
  6. JQuery 获取验证码倒计时
  7. CMake 教程
  8. Unity3d在线游戏Socket通讯
  9. POJ 3468 A Simple Problem with Integers(树状数组区间更新)
  10. 《设计模式之禅》--设计模式大PK
  11. C#一句话判断两个List&lt;T&gt;是否相等
  12. day13函数的嵌套定义,global、nonlocal关键字,闭包及闭包的运用场景,装饰器
  13. 菜鸟入门【ASP.NET Core】7:WebHost的配置、 IHostEnvironment和 IApplicationLifetime介绍、dotnet watch run 和attach到进程调试
  14. eclipse格式化代码样式
  15. OAuth 2.0:Bearer Token、MAC Token区别
  16. 201621123008 《Java程序设计》 第三周学习总结
  17. Fiddler下Firefox提示“您的连接并不安全”的解决办法
  18. 【总结】详细说说Html.ActionLink的用法
  19. CPU上下文切换详解
  20. SpringBoot实战(一)之构建RestFul风格

热门文章

  1. 同台电脑 多Git账号同时使用
  2. 【linux安装软件步骤】
  3. Codeforces Round #520 (Div. 2)B(贪心,数学)
  4. 实现html页面只自动跳转一次
  5. LCA 【bzoj1787】[Ahoi2008]Meet 紧急集合
  6. [AHOI2009]飞行棋 BZOJ1800
  7. bzoj5506:[gzoi2019]旅行者
  8. Jmeter_Beanshell_使用Java处理JSON块(转)
  9. 关于String的split方法
  10. LeetCode 136 Single Number 数组中除一个数外其他数都出现两次,找出只出现一次的数