[PAT] 1141 PAT Ranking of Institutions(25 分)

After each PAT, the PAT Center will announce the ranking of institutions based on their students' performances. Now you are asked to generate the ranklist.

Input Specification:
Each input file contains one test case. For each case, the first line gives a positive integer N (≤10
​5
​​ ), which is the number of testees. Then N lines follow, each gives the information of a testee in the following format:

ID Score School

where ID is a string of 6 characters with the first one representing the test level: B stands for the basic level, A the advanced level and T the top level; Score is an integer in [0, 100]; and School is the institution code which is a string of no more than 6 English letters (case insensitive). Note: it is guaranteed that ID is unique for each testee.

Output Specification:
For each case, first print in a line the total number of institutions. Then output the ranklist of institutions in nondecreasing order of their ranks in the following format:

Rank School TWS Ns

where Rank is the rank (start from 1) of the institution; School is the institution code (all in lower case); ; TWS is the total weighted score which is defined to be the integer part of ScoreB/1.5 + ScoreA + ScoreT*1.5, where ScoreX is the total score of the testees belong to this institution on level X; and Ns is the total number of testees who belong to this institution.

The institutions are ranked according to their TWS. If there is a tie, the institutions are supposed to have the same rank, and they shall be printed in ascending order of Ns. If there is still a tie, they shall be printed in alphabetical order of their codes.

Sample Input:

10
A57908 85 Au
B57908 54 LanX
A37487 60 au
T28374 67 CMU T32486 24 hypu A66734 92 cmu B76378 71 AU A47780 45 lanx A72809 100 pku A03274 45 hypu 

Sample Output:

5
1 cmu 192 2
1 au 192 3
3 pku 100 1
4 hypu 81 2
4 lanx 81 2

题意:第一行输出参加考试的学校数。再按分数、人数、学校名的字典序进行排序。

思路:首先需要构造一个学校结构体,读取输入之后进行分数的计算。然后对结构体实现一个排序。注意需要求得每个学校的总分后在进行取整,不然有一个3分的测试用例过不去。

题解:

 1 #include<cstdlib>
 2 #include<cstdio>
 3 #include<vector>
 4 #include<map>
 5 #include<algorithm>
 6 #include<iostream>
 7 #include<string>
 8 using namespace std;
 9 struct institution {
10     int rank;
11     string name;
12     float score;
13     int num;
14 };
15 string lowCase(string str) {
16     for (int i = 0; i < str.length(); i++) {
17         if (str[i] >= 'A' && str[i] <= 'Z') {
18             str[i] = str[i] - 'A' + 'a';
19         }
20     }
21     return str;
22 }
23 bool cmp(institution a, institution b) {
24     if (a.score != b.score) return a.score > b.score;
25     else if (a.num != b.num) return a.num < b.num;
26     else return a.name < b.name;
27 }
28 //这里不能直接返回score的取整部分,
29 //题目的意思是要算出totalscore之后,
30 //再进行取整,否则有一个3分的用例过不去。
31 float trueScore(string id, float score) {
32     char c = id[0];
33     if (c == 'A') return score;
34     else if (c == 'B') return score / 1.5f;
35     else return score * 1.5f;
36 }
37 int main() {
38     int n;
39     map<string, institution> mapp;
40     scanf("%d", &n);
41     string id, school;
42     float score;
43     for (int i = 0; i < n; i++) {
44         cin >> id;
45         cin >> score;
46         cin >> school;
47         school = lowCase(school);
48         score = trueScore(id, score);
49         if (mapp.find(school) != mapp.end()) {
50             mapp[school].num++;
51             mapp[school].score += score;
52         }
53         else {
54             institution ins;
55             ins.name = school;
56             ins.num = 1;
57             ins.score = score;
58             mapp[school] = ins;
59         }
60     }
61 
62     vector<institution> result;
63     for (map<string, institution>::iterator it = mapp.begin(); it != mapp.end(); it++) {
64         //对分数进行取整
65         it->second.score = (int)it->second.score;
66         result.push_back(it->second);
67     }
68 
69     sort(result.begin(), result.end(), cmp);
70     printf("%d\n", result.size());
71     int rank = 1;
72     score = result[0].score;
73     for (int i = 0; i < result.size(); i++) {
74         if (result[i].score != score) {
75             rank = i + 1;
76             score = result[i].score;
77         }
78         cout << rank << " " << result[i].name << " " << (int)result[i].score << " " << result[i].num << endl;
79     }
80     return 0;
81 }

猜你喜欢

转载自www.cnblogs.com/yfzhou/p/9644240.html