Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167986 | B蒋礼谦 | 双关键字排序 | C++ | 通过 | 100 | 51 MS | 1036 KB | 416 | 2024-08-19 21:39:40 |
#include<bits/stdc++.h> using namespace std; int n; struct node { int x,y; }a[100005]; bool cmp(node xx,node yy) { if(xx.x!=yy.x) { return (xx.x<yy.x); } return (xx.y<yy.y); } int main() { cin>>n; for(int i=1;i<=n;i++) { cin>>a[i].x>>a[i].y; } sort(a+1,a+n+1,cmp); for(int i=1;i<=n;i++) { cout<<a[i].x<<" "<<a[i].y<<"\n"; } return 0; }