- 生日排序
救命,有没有人帮忙看看
- 2024-7-30 22:41:56 @
最后一个点显示user answer longer than standard answer
#include<bits/stdc++.h>
using namespace std;
int main() {
int n=0;
cin>>n;
vector<pair<int,pair<int,pair<int,string>>>> ovo(n+1);
for(int i=0;i<n;i++){
cin>>ovo[i].second.second.second>>ovo[i].first>>ovo[i].second.first>>ovo[i].second.second.first;
}
sort(ovo.begin(),ovo.begin()+n);
for(int i=0;i<n;i++){
cout<<ovo[i].second.second.second<<endl;
}
return 0;
}
1 条评论
-
chuhaoyu LV 10 @ 2024-7-30 22:51:37
ok,此帖已结,是sort快速排序的不稳定性导致的还得是自己写cmp(
- 1
信息
- ID
- 718
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 7
- 标签
- (无)
- 递交数
- 106
- 已通过
- 22
- 上传者