반응형
#include <bits/stdc++.h>
using namespace std;
int N;
vector<pair<int, int>> v;
bool compare(pair<int,int>& a,pair<int,int>& b)
{
if (a.first == b.first)
{
return a.second < b.second;
}
else {
return a.first < b.first;
}
}
int main(void)
{
ios::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
cin >> N;
for (int i = 0; i < N; i++)
{
int a, b;
cin >> a >> b;
v.push_back({ a,b });
}
sort(v.begin(), v.end(), compare);
for (int i = 0; i < N; i++)
{
cout << v[i].first << ' ' << v[i].second << '\n';
}
}
반응형
'Algorithm > Problem Solve' 카테고리의 다른 글
[백준 10866번] 덱 (0) | 2020.12.14 |
---|---|
[백준 11866번] 요세푸스 문제0 (0) | 2020.12.13 |
[백준 10828번] 스택 (0) | 2020.12.13 |
[백준 10816번] 숫자 카드 2 ( map / 이분탐색(upper,lowerbound) ) (2) | 2020.12.13 |
[백준 10814번] 나이순 정렬 (Stable_sort) (0) | 2020.12.13 |