좌표 정렬하기

알고리즘 문제 풀이/1DP_과제(~180615)

180423_11650_좌표 정렬하기

//https://www.acmicpc.net/problem/11650 #include #include #include #include using namespace std; struct xy{ int x; int y;}; bool cmp(xy a, xy b){ if(a.x < b.x) return true; else if(a.x==b.x) return a.y

bong sue
'좌표 정렬하기' 태그의 글 목록