PAT 甲级1141 最后一个测试点通不过 不是精度损失问题

PAT 甲级1141 最后一个测试点通不过  不是精度损失问题

问题描述:

先放原题,就是按照要求对不同学校的考生成绩进行加权累加,最后输出学校排名。

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

这代码也改了很多次了,也不是精度的问题啊?改的脑袋大了,各位dada救我。

img

下面放代码

img
img

#include
#include
#include
#include
#include<string.h>
#include<math.h>
#include
using namespace std;
struct stu{
char id[6];
char u[7];
double score;
int rank;
int cnt;
int ans;
};
bool cmp(stu a,stu b){
if(a.ans!=b.ans){return a.ans>b.ans;}
else if(a.cnt!=b.cnt){return a.cnt<b.cnt;}
else {return strcmp(a.id,b.id)>0;}}

int main(){
int n;
scanf("%d",&n);
vector v;
unordered_map<string,int> mapp;
int dis=0;
for(int i=0;i<n;i++){
stu temp;
scanf("%s %lf %s",temp.id,&temp.score,temp.u);
if(temp.id[0]=='B')temp.score=temp.score/1.5;
else if(temp.id[0]=='T')temp.score=temp.score*1.5;
temp.cnt=1;
for(int j=0;j<7;j++)temp.u[j]=tolower(temp.u[j]);

    if(!mapp[temp.u]){v.push_back(temp);
                  mapp[temp.u]=dis+1;
                  dis++; }
    else {v[mapp[temp.u]-1].score+=temp.score;
       v[mapp[temp.u]-1].cnt+=1;}
    

}
for(int i=0;i<v.size();i++){v[i].ans=(int)v[i].score;}

sort(v.begin(),v.end(),cmp);
for(int i=0;i<v.size();i++){
    v[i].rank=i+1;
    if(v[i].ans==v[i-1].ans)v[i].rank=v[i-1].rank;}

printf("%d\n",v.size());
for(int i=0;i<v.size();i++){
    printf("%d %s %d %d\n",v[i].rank,v[i].u,v[i].ans,v[i].cnt);}
return 0;}


上面的图太糊了怕看不清