Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
115742 | 毛泓博(做题专用,大号Fess) | 双关键字排序 | C++ | 通过 | 100 | 48 MS | 1040 KB | 355 | 2023-12-13 13:33:08 |
#include<bits/stdc++.h> using namespace std; int n; struct node { int a,b; }; bool cmp(node a,node b) { return (a.a!=b.a?a.a<b.a:a.b<b.b); } int main() { cin>>n; struct node *ab=new node[n+1]; for(int i=1;i<=n;i++) cin>>ab[i].a>>ab[i].b; sort(ab+1,ab+n+1,cmp); for(int i=1;i<=n;i++) cout<<ab[i].a<<' '<<ab[i].b<<'\n'; delete[] ab; }