Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
151917 陈家宝 奖学金 C++ 通过 100 0 MS 264 KB 550 2024-06-20 13:11:54

Tests(10/10):


#include<bits/stdc++.h> using namespace std; struct stu{ int mark,ch,ma,en; }a[100005]; bool wdnmd(stu x,stu y){ if(x.ma+x.ch+x.en>y.ma+y.en+y.ch)return 1; else if(x.ma+x.ch+x.en<y.ma+y.en+y.ch)return 0; else{ if(x.ch>y.ch)return 1; else if(x.ch<y.ch)return 0; else return x.mark<y.mark; } } int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i].ch>>a[i].en>>a[i].ma; a[i].mark=i; } stable_sort(a+1,a+1+n,wdnmd); for(int i=1;i<=5;i++)cout<<a[i].mark<<" "<<a[i].ch+a[i].en+a[i].ma<<endl; return 0; }


测评信息: