Algorithm
boj 11650 좌표정렬하기 c++
boj 11650 좌표 정렬하기 c++ 백준 11650 좌표 정렬하기 cpp C++의 pair와 STL sort를 이용하면 쉽게 풀 수 있는 문제. 시간도 1초로 넉넉하고 메모리도 256MB로 '매우' 넉넉했음. sort는 pair를 인자로 넣었을 때 알아서 첫 번째 인자 - 두 번째 인자 순으로 (오름차순) 정렬함. # include using namespace std; # define X first # define Y second pair arr[100001]; int N; int main() { ios::sync_with_stdio(0); cin.tie(0); cin >> N; for (int i = 0; i > arr[i].X >> arr[i].Y; } sort(ar..
2021. 2. 16. 17:12
최근댓글