zoukankan      html  css  js  c++  java
  • 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 (≤), 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

    题解:
    用两个map分别作为school,ns 和school ,score的映射

    #include<bits/stdc++.h>
    using namespace std;
    const int maxn=1010;
    struct node{
        string sch;
        int tws,ns;
    };
    bool cmp(node a,node b){
        if(a.tws!=b.tws){
            return a.tws>b.tws;
        }
        else if(a.ns!=b.ns){
            return a.ns<b.ns;
        }
        else {
            return a.sch<b.sch;
        }
    }
    int main(){
        int n;
        unordered_map<string,int> cns;//使用map会超时
        unordered_map<string,double> sum;
        scanf("%d",&n);
        for(int i=0;i<n;i++){
            string school,id;
            double score;
            cin>>id;
            cin>>score>>school;
            for(int i=0;i<school.size();i++){
                school[i]=tolower(school[i]);
            }
            if(id[0]=='B'){
                score=score/1.5;
            }
            else if(id[0]=='A'){
                score=score;
            }
            else if(id[0]=='T'){
                score=score*1.5;
            }
            sum[school]+=score;
            cns[school]++;
        }
        vector<node> v;
        for(unordered_map<string,double>::iterator it=sum.begin();it!=sum.end();it++){
            v.push_back({it->first,(int)it->second,cns[it->first]});
        }
        sort(v.begin(),v.end(),cmp);
        cout<<v.size()<<endl;
        int pre=-1,cnt=0;
        for(int i=0;i<v.size();i++){
            if(pre!=v[i].tws){
                cnt=i+1;
            }
            pre=v[i].tws;//处理排名问题的小技巧
            printf("%d %s %d %d
    ",cnt,v[i].sch.c_str(),v[i].tws,v[i].ns);
    //        cout<<cnt<<" "<<v[i].sch<<" "<<v[i].tws<<" "<<v[i].ns<<endl;//超时
        }
        
        return 0;
    
    }


  • 相关阅读:
    VisionPro 极坐标圆形物体缺陷检测
    VisionPro CogSobeEdgeTool工具
    VisionPro CogLinescanDistortionCorrectionTool工具 图像处理工具
    VisionPro CogIPTwoImageSubtractTool工具 图像处理工具
    云原生技术实践-关键要素和原则
    深度解析项目管理
    商业进化图谱
    一张图理解网络的几个专有名词:数据、段、包、帧、比特
    泛在感知中台建设方案
    区块链生态架构图
  • 原文地址:https://www.cnblogs.com/dreamzj/p/14414107.html
Copyright © 2011-2022 走看看