Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99539 | 王为治 | 双关键字排序 | C++ | 运行超时 | 80 | 1000 MS | 1032 KB | 530 | 2023-08-23 09:18:56 |
#include <bits/stdc++.h> using namespace std; struct node{ int x,y; }a[100005]; signed main() { int n; cin >> n; for(int i = 1; i <= n; i++) { cin >> a[i].x >> a[i].y; } for(int i = 1; i <= n-1; i++) { for(int j = i+1; j <= n; j++) { if(a[i].x > a[j].x) { swap(a[i],a[j]); } else if(a[i].x == a[j].x) { if(a[i].y > a[j].y) { swap(a[i],a[j]); } } } } for(int i = 1; i <= n; i++) { cout << a[i].x <<" "<< a[i].y<<endl; } return 0; }