본문 바로가기

알고리즘!

백준 11651번- 좌표 정렬하기 2

문제

2차원 평면 위의 점 N개가 주어진다. 좌표를 y좌표가 증가하는 순으로, y좌표가 같으면 x좌표가 증가하는 순서로 정렬한 다음 출력하는 프로그램을 작성하시오.

입력

첫째 줄에 점의 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N개의 줄에는 i번점의 위치 xi와 yi가 주어진다. (-100,000 ≤ xi, yi ≤ 100,000) 좌표는 항상 정수이고, 위치가 같은 두 점은 없다.

출력

첫째 줄부터 N개의 줄에 점을 정렬한 결과를 출력한다.

#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include <numeric>
#include<math.h>
using namespace std;

bool cmp(const pair<int, int> &a, const pair<int, int> &b)
{
	if (a.second == b.second)
		return a.first <  b.first;
	return a.second < b.second;
}

int main() {
	int n,a,b;
	cin >> n;
	vector<pair<int,int>>arr;
	for (int i = 0; i < n; i++) {
		scanf("%d%d", &a, &b);
		arr.push_back(make_pair(a, b));
	}
	sort(arr.begin(), arr.end(), cmp);
	for (auto i : arr)
		printf("%d %d\n", i.first, i.second);
}

어제 소스를 가져와 cmp부분만 바꿨더니 풀렸다.

'알고리즘!' 카테고리의 다른 글

백준 10814번- 나이순 정렬  (0) 2019.09.10
백준 1181번-단어 정렬  (0) 2019.09.09
백준 11650번- 좌표 정렬하기  (0) 2019.09.05
백준 1427번- 소트인사이드  (0) 2019.09.04
백준 2108번- 통계학  (0) 2019.09.03