#14060: 6+++6+6


22505031 (今晚打老虎)

學校 : 國立嘉義高級中學
編號 : 68291
來源 : [140.113.236.123]
最後登入時間 :
2024-10-16 22:09:52
a915. 二维点排序 | From: [163.27.3.92] | 發表日期 : 2018-06-07 13:54

#include <iostream>
#include <iostream>
#include <cstring>
#include <sstream>
#include <algorithm>
#include <vector>
using namespace std;
struct point{
int x,y;
bool operator<(const point &o)
{ if(x!=o.x)
return x<o.x;
else
return y<o.y;
}
};
int main()
{
int a;
while(cin>>a)
{
vector<point> v(a);
for(point &s:v)
cin>>s.x>>s.y;
sort(v.begin(),v.end());
for(point s:v)
cout<<s.x<<" "<<s.y<<endl;
cout<<endl;

}
return 0;
}

 
ZeroJudge Forum