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 (≤105), 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
#include<iostream> #include<vector> #include<map> #include<algorithm> using namespace std; struct School{ string name; double grade; int stuNum; }school; bool cmp(School a,School b){ if(a.grade != b.grade) return a.grade > b.grade; else if(a.stuNum != b.stuNum) return a.stuNum < b.stuNum; else return a.name < b.name; } int main(){ int n; cin >> n; string s,str; vector<School> sch,ans; map<string,int> idx; int cnt = 1; double score; for(int i = 0; i < n; i++){ cin >> s >> score >> str; for(int j = 0; j < str.length(); j++){ if(str[j] >= 'A' && str[j] <= 'Z') str[j] = str[j] - 'A' + 'a'; } if(s[0] == 'B') score /= 1.5; else if(s[0] == 'T') score *= 1.5; if(idx.count(str) == 0){ idx[str] = cnt++; school.name = str; school.grade = 0; school.stuNum = 0; sch.push_back(school); } sch[idx[str]-1].grade += score; sch[idx[str]-1].stuNum++; } for(int i = 0; i < sch.size(); i++){ sch[i].grade = (int)sch[i].grade; } sort(sch.begin(),sch.end(),cmp); int rank = 1; printf("%d\n",sch.size()); cout << rank << " "<< sch[0].name << " " << sch[0].grade << " " << sch[0].stuNum << endl; for(int i = 1; i < sch.size(); i++){ if(sch[i].grade != sch[i-1].grade){ rank = i + 1; } cout << rank << " "<< sch[i].name << " " << sch[i].grade << " " << sch[i].stuNum << endl; } return 0; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)