[C++] 백준 11650 좌표 정렬하기
·
Algorithm/Baekjoon
#include #include #include using namespace std; int main() { ios::sync_with_stdio(false); int n = 0; cin >> n; vector point(n);//빈값 생성 for (int i = 0; i > point[i].first >> point[i].second;//바로 값을 변수에 받아옴 sort(point.begin(), point.end());//왼쪽이 높은 순으로 정렬후 오른쪽 높은순으로 정렬됨 for (int i = 0; i < n; i++) cout