https://www.acmicpc.net/problem/11650
조건이 2개이상이면, 이제는 자연스럽게 자료구조를 정의하고 comp함수를 넘겨주는 방법으로 sort를 진행하는 것 같다.
#include <iostream>
#include <vector>
#include<algorithm>
using namespace std;
typedef struct idx {
int x;
int y;
};
bool comp(idx a, idx b) {
if (a.x != b.x)
return a.x < b.x;
else
return a.y < b.y;
}
vector <idx> indices;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int N;
cin >> N;
for (int i = 0; i < N; i++) {
idx index;
cin >> index.x >> index.y;
indices.push_back(index);
}
sort(indices.begin(), indices.end(), comp);
for (int i = 0; i < indices.size(); i++) {
cout << indices[i].x << " " << indices[i].y << '\n';
}
}
'코딩테스트_백준풀이' 카테고리의 다른 글
피보나치 함수 #1003 c++ 풀이 (1) | 2023.10.23 |
---|---|
solved.ac #18110 c++ 풀이 (0) | 2023.10.13 |
숫자 카드 2 #10816 c++ 풀이 (1) | 2023.10.13 |
덱 #10866 c++ 풀이 (1) | 2023.10.13 |
큐 #10845 c++ 풀이 (1) | 2023.10.13 |