11650번: 좌표 정렬하기 링크 코드 #include #include using namespace std; bool compare(const pair &a, const pair &b){ if(a.first == b.first){ return a.second < b.second; } else{ return a.first < b.first; } } int main() { vector pos; int n; int tmp_x, tmp_y; scanf("%d", &n); for(int i=0; i