1012. The best rank (25) -- Pat (Advanced Level) practise

Source: Internet
Author: User
Question information:

1012. The best rank (25) Time Limit 400 MS
The memory limit is 32000 kb.
Code length limit: 16000 B
Criterion author Chen, Yue

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  A310101     98 85 88 90310102     70 95 88 84310103     82 87 94 88310104     91 91 91 91

Then the best ranks for all the students areNo.1Since 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 wocould 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/".

Sample Input
5 6310101 98 85 88310102 70 95 88310103 82 87 94310104 91 91 91310105 85 90 90310101310102310103310104310105999999
Sample output
1 C1 M1 E1 A3 AN/A


The Code is as follows:

#include <iostream>#include <string>#include <map>#include <set>using namespace std;class CJ{public:int c, m, e, a;int cp, mp, ep, ap;CJ(){cp = mp = ep = ap = 0;}};int main(){map<string, CJ> mp;map<int, string> mpb;int n, m;while (!cin.eof() && cin >> n >> m){for (int i = 0; i < n; ++i){string str;cin >> str;CJ cj;cin >> cj.c >> cj.m >> cj.e;cj.a = (cj.c + cj.m + cj.e) / 3;mp[str] = cj;}for (int j = 0; j < m; ++j){string str;cin >> str;mpb[j] = str;}for (map<string, CJ>::iterator ipi = mp.begin();ipi != mp.end(); ipi++){for (map<string, CJ>::iterator ipj = ipi;ipj != mp.end(); ipj++){if (ipi == ipj)continue;if (ipi->second.c < ipj->second.c)ipi->second.cp++;else if (ipi->second.c > ipj->second.c)ipj->second.cp++;if (ipi->second.m < ipj->second.m)ipi->second.mp++;else if (ipi->second.m > ipj->second.m)ipj->second.mp++;if (ipi->second.e < ipj->second.e)ipi->second.ep++;else if (ipi->second.e > ipj->second.e)ipj->second.ep++;if (ipi->second.a < ipj->second.a)ipi->second.ap++;else if (ipi->second.a > ipj->second.a)ipj->second.ap++;}}for (map<int, string>::iterator ip = mpb.begin();ip != mpb.end(); ip++){if (mp.find(ip->second) != mp.end()){int arr[4] = { mp[ip->second].ap, mp[ip->second].cp, mp[ip->second].mp, mp[ip->second].ep };int max = 0;for (int i = 1; i < 4; i++){if (arr[i] < arr[max])max = i;}cout << arr[max] + 1 << " ";char ch;switch (max){case 0:ch = 'A';break;case 1:ch = 'C';break;case 2:ch = 'M';break;case 3:ch = 'E';}cout << ch << endl;}elsecout << "N/A" << endl;}}return 0;}


1012. The best rank (25) -- Pat (Advanced Level) practise

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.