题解
2023-08-14 09:47:45
发布于:浙江
5阅读
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;
cin >>a;
for(int i=1;i<=a;i++){
cin >>pool[i].q>>pool[i].w;
pool[i].e=i;
}
sort(pool+1,pool+1+a,cmp);
for(int i=1;i<=a;i++){
cout <<pool[i].q<<" "<<pool[i].w<<endl;
}
return 0;
}
**
这里空空如也
有帮助,赞一个