1085 PAT單位排行
1085 PAT單位排行 (25 分)
每次 PAT 考試結束後,考試中心都會發佈一個考生單位排行榜。本題就請你實現這個功能。
輸入格式:
輸入第一行給出一個正整數 N(≤105),即考生人數。隨後 N 行,每行按下列格式給出一個考生的資訊:
准考證號 得分 學校
其中准考證號
是由 6 個字元組成的字串,其首字母表示考試的級別:B
代表乙級,A
代表甲級,T
代表頂級;得分
是 [0, 100] 區間內的整數;學校
是由不超過 6 個英文字母組成的單位碼(大小寫無關)。注意:題目保證每個考生的准考證號是不同的。
輸出格式:
首先在一行中輸出單位個數。隨後按以下格式非降序輸出單位的排行榜:
排名 學校 加權總分 考生人數
其中排名
是該單位的排名(從 1 開始);學校
是全部按小寫字母輸出的單位碼;加權總分
定義為乙級總分/1.5 + 甲級總分 + 頂級總分*1.5
的整數部分;考生人數
是該屬於單位的考生的總人數。
學校首先按加權總分排行。如有並列,則應對應相同的排名,並按考生人數升序輸出。如果仍然並列,則按單位碼的字典序輸出。
輸入樣例:
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
輸出樣例:
5
1 cmu 192 2
1 au 192 3
3 pku 100 1
4 hypu 81 2
4 lanx 81 2
#include<cstdio>
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<map>
using namespace std;
typedef struct {
string comp;
double score;
int num;
}stu;
bool cmp(stu a,stu b) {
int aa = (int)a.score;
int bb = (int)b.score;
if (aa != bb)
return aa > bb;
else {
if (a.num != b.num)
return a.num < b.num;
else
return a.comp < b.comp;
}
}
map<string, stu> m;
map<string, stu>::iterator it;
int main()
{
int n = 0;
cin >> n;
for (int i = 0; i < n; i++) {
char rank;
string id;
int sc;
string comp;
cin >> rank >> id >> sc >> comp;
for (int j = 0; j < comp.size(); j++)
if (comp[j] >= 'A'&&comp[j] <= 'Z')
comp[j] = comp[j] - 'A' + 'a';
m[comp].comp = comp;
m[comp].num++;
if (rank == 'B')m[comp].score += sc / 1.5;
else if (rank == 'A')m[comp].score += sc;
else if (rank == 'T')m[comp].score += sc*1.5;
}
vector<stu> s;
for (it = m.begin(); it != m.end(); it++)
s.push_back(it->second);
sort(s.begin(), s.end(), cmp);
cout << s.size() << endl;
int r = 1;int pre = 0,prer=1;
for (int i = 0; i < s.size(); i++) {
int sco = (int)s[i].score;
if (sco == pre)
r = prer;
else
r = i + 1;
cout << r << " " << s[i].comp << " " << sco << " " << s[i].num << endl;
pre = sco;
prer = r;
}
return 0;
}