1137 Final Grading (25)

1137 Final Grading (25)(25 分)

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 G = (G~mid-term~x 40% + G~final~x 60%) 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 "-1" 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 qualified 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

https://www.liuchuo.net/archives/4206

这一题的超时不在map的查找上,而是在排序上, 如果未经过筛选就对所有的数据进行排序, 会导致超时, 应该先筛选出符合要求的数据再对其进行排序,才能避免超时, 以后再应该注意这一点

即在输入的时候就筛选掉不需要的数据

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <vector>
 4 #include <map>
 5 using namespace std;
 6 struct node {
 7     string name;
 8     int gp, gm, gf, g;
 9 };
10 bool cmp(node a, node b) {
11     return a.g != b.g ? a.g > b.g : a.name < b.name;
12 }
13 map<string, int> idx;
14 int main() {
15     int p, m, n, score, cnt = 1;
16     cin >> p >> m >> n;
17     vector<node> v, ans;
18     string s;
19     for (int i = 0; i < p; i++) {
20         cin >> s >> score;
21         if (score >= 200) {
22             v.push_back(node{s, score, -1, -1, 0});
23             idx[s] = cnt++;
24         }
25     }
26     for (int i = 0; i < m; i++) {
27         cin >> s >> score;
28         if (idx[s] != 0) v[idx[s] - 1].gm = score;
29     }
30     for (int i = 0; i < n; i++) {
31         cin >> s >> score;
32         if (idx[s] != 0) {
33             int temp = idx[s] - 1;
34             v[temp].gf = v[temp].g = score;
35             if (v[temp].gm > v[temp].gf) v[temp].g = int(v[temp].gm * 0.4 + v[temp].gf * 0.6 + 0.5);
36         }
37     }
38     for (int i = 0; i < v.size(); i++)
39         if (v[i].g >= 60) ans.push_back(v[i]);
40     sort(ans.begin(), ans.end(), cmp);
41     for (int i = 0; i < ans.size(); i++)
42         printf("%s %d %d %d %d
", ans[i].name.c_str(), ans[i].gp, ans[i].gm, ans[i].gf, ans[i].g);
43     return 0;
44 }
有疑惑或者更好的解决方法的朋友,可以联系我,大家一起探讨。qq:1546431565
原文地址:https://www.cnblogs.com/mr-stn/p/9168823.html