728x90
간단한 정렬 문제이다.
pair를 사용한 정렬 연습에 적절한 문제!
#include <iostream>
#include <algorithm>
using namespace std;
pair<int, int> arr[100001];
int n, s, x, y;
int main() {
cin >> n;
for(int i=0; i<n; i++) {
cin >> x >> y;
arr[i] = make_pair(x, y);
}
sort(arr, arr+n);
for(int i=0; i<n; i++)
cout << arr[i].first << ' ' << arr[i].second << '\n';
}
좌표 정렬하기를 했다면 이 문제도 풀어보자..!
728x90
'알고리즘 > 문제' 카테고리의 다른 글
[백준] 1676. 팩토리얼 0의 개수 <C++> (0) | 2020.09.05 |
---|---|
[백준] 10814. 나이순 정렬 <C++> (0) | 2020.09.04 |
[NYPC] [2019 예선] 1. 최대 HP (0) | 2020.08.30 |
[codeground] Practice. 11. 개구리 뛰기 (0) | 2020.08.26 |
[codeground] Practice. 3. 시험 공부 (0) | 2020.08.26 |
댓글