题解 | 成绩排序

#include <bits/stdc++.h>
using namespace std;

struct s{
    int p,q;
};
bool cmp(s a,s b){
    if(a.q == b.q) return a.p<b.p;
    else return a.q<b.q;
}
int main() {
    int n;
    cin>>n;
    s stu[n+1];
    for(int i=0;i<n;i++){
        cin>>stu[i].p>>stu[i].q;
    }
    sort(stu,stu+n,cmp);
    for(int i=0;i<n;i++){
        cout<<stu[i].p<<" "<<stu[i].q<<endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务