题解 | #成绩排序#

成绩排序

https://www.nowcoder.com/practice/8e400fd9905747e4acc2aeed7240978b

#include <iostream>
using namespace std;
#include <map>
#include <algorithm>
int main() {
    int a, b;
    cin>>a;
    cin>>b;
    multimap<int,string,greater<int>> m1;
    multimap<int,string> m2;
    for(int i=0;i<a;i++){
        int num;
        string name;
        cin>>name>>num;
        if(b==0){
            m1.insert(make_pair(num,name));
        }else{
            m2.insert(make_pair(num,name));
        }
    }if(b==0){
        for(multimap<int,string>::iterator it=m1.begin();it!=m1.end();it++){
            cout<<it->second<<" "<<it->first<<endl;
        }
    }else{
        for(multimap<int,string>::iterator it=m2.begin();it!=m2.end();it++){
            cout<<it->second<<" "<<it->first<<endl;
    }

}
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

牛客29046817...:优化一下简历,突出重点,简历上的技能复习扎实,实习工作啥的整理成文档梳理一下怎么说要有自己的思考在里边,岗位的话运维,测试,开发,实施,技术支持能投的都投,多投递能找到的,秋招投递了3个月左右(8月中旬到11月下旬),boos打招呼8000多次,官网投递300多家,才找到一家满意的
点赞 评论 收藏
分享
04-28 15:42
郑州大学 C++
找工作勤劳小蜜蜂:网易这几个月在大面积裁员,外包岗全退,今年网易收缩严重,建议慎重考虑网易
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务