这是个废物文章,请不要继续看下去
#include<bits/stdc++.h> using namespace std; struct node { int x,y; bool operator < (const node &a) const { if(a.x!=x)return a.x>x; return y<a.y; } }p[1000100]; int main() { for(int i=1;i<=10;i++) { cin>>p[i].x>>p[i].y; } sort(p+1,p+1+10); for(int i=1;i<=10;i++) { cout<<p[i].x<<‘ ‘<<p[i].y<<endl; } return 0; }