Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99815 | 赵德明 | 双关键字排序 | C++ | 运行超时 | 60 | 1000 MS | 260 KB | 375 | 2023-08-23 21:15:06 |
#include<bits/stdc++.h> using namespace std; struct asd{ int a,b; bool operator < (const asd &o)const{ if(a!=o.a) return a<o.a; else return b<o.b; } }; asd n[1005]; int main(){ int a; cin>>a; for(int i=1;i<=a;i++){ scanf("%d%d",&n[i].a,&n[i].b); } sort(n+1,n+a+1); for(int i=1;i<=a;i++){ printf("%d %d\n",n[i].a,n[i].b); } return 0; }