提交时间:2023-08-23 21:15:06
运行 ID: 99815
#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; }