PAT 1080 MOOC期终成绩 (25 分)

#include <iostream>
#include <algorithm>
#include <map>
#include <vector>
using namespace std;
struct stu
{
    string name;
    int Gp,Gm,Gf,G;
};
bool cmp(stu a,stu b){
    return a.G!=b.G?a.G>b.G:a.name<b.name; //按总评分数递减输出,若并列则按学号递增
}
map<string, int> idx;
int main() {
    vector<stu> a,res;
    int p,m,n,temp,score,cnt=1;    //cnt表示在这个学生在结构体数组v中是第几个,idx[s]的键值cnt==0表示不在v中
    cin>>p>>m>>n;
    string s;
    for(int i=0;i<p;i++){  //输入编程成绩
        cin>>s>>score;
        if(score>=200){   //只有>=200分的要放入a数组,并同时用map保存name对应的在a中的下标,方便后续根据name进行结构体赋值
            a.push_back(stu{s,score,-1,-1,0});  //结构体初始化+定义
            idx[s]=cnt++;         
        }
    }
    for(int i=0;i<m;i++){  //输入期中成绩
        cin>>s>>score;
        if(idx[s]!=0) a[idx[s]-1].Gm=score;    
    }
    for(int i=0;i<n;i++){   //输入期末成绩+计算总评
        cin>>s>>score;
        if(idx[s]!=0){
            temp=idx[s]-1;
            a[temp].Gf=score;
            if(a[temp].Gm<a[temp].Gf){a[temp].G=score;}   //如果Gm<Gf,总评就是Gf
            else{a[temp].G=int(a[temp].Gm * 0.4 + a[temp].Gf * 0.6 + 0.5);}  //否则,总评G=Gm*0.4+Gf*0.6
        }
    }
    for(int i=0;i<a.size();i++){   //总评>60的放入res数组
        if(a[i].G>=60)res.push_back(a[i]);
    }
    sort(res.begin(),res.end(),cmp);  //按总评和学号排序
    for(int i=0;i<res.size();i++){ 
        cout<<res[i].name<<" "<<res[i].Gp<<" "<<res[i].Gm<<" "<<res[i].Gf<<" "<<res[i].G<<endl;
    }
    system("pause");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值