좌표를 저장할 클래스를 만들고 vector로 좌표들을 관리하였습니다.
그리고 이를 요구사항에 맞는 비교 함수를 정의하여 정렬하였습니다.
https://www.acmicpc.net/problem/11650
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class Location {
public:
int x;
int y;
Location(int _x, int _y) {
x = _x;
y = _y;
}
};
vector<Location> locations;
bool cmp(Location l1, Location l2) {
if(l1.x == l2.x) {
return l1.y < l2.y;
}
return l1.x < l2.x;
}
int main() {
cin.tie(0); cout.tie(0);
ios::sync_with_stdio(0);
int N;
cin >> N;
for(int i=0; i<N; i++) {
int x, y;
cin >> x >> y;
locations.push_back(Location(x, y));
}
sort(locations.begin(), locations.end(), cmp);
for(int i=0; i<N; i++) {
cout << locations[i].x << ' ' << locations[i].y << '\n';
}
return 0;
}
'알고리즘 > BOJ' 카테고리의 다른 글
[BOJ] 2345. 풍선 터뜨리기 (0) | 2020.04.27 |
---|---|
[BOJ] 1920. 수 찾기 (0) | 2020.03.25 |
[BOJ] 10814. 나이순 정렬 (0) | 2020.03.25 |
[BOJ] 1181. 단어 정렬 (0) | 2020.03.25 |
[BOJ] 11866. 요세푸스 문제 0 (0) | 2020.03.25 |
댓글