题解
2023-08-14 09:54:16
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
struct str{
string q;
int w;
int e;
};
bool cmp(str a,str b){
if(a.w==b.w){
return a.e<b.e;
}else{
return a.w>b.w;
}
}
int main(){
str pool[10005];
int a;int b;
cin >>a>>b;
for(int i=1;i<=a;i++){
cin >>pool[i].q>>pool[i].w>>pool[i].e;
}
sort(pool+1,pool+1+a,cmp);
for(int i=1;i<=b;i++){
cout <<pool[i].q<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个