[BOJ] 11650. 좌표 정렬하기 - (Java)

Problem

제출일 : 2020-04-02

문제 풀이 시간 : 10M

난이도 : ★★


link : https://www.acmicpc.net/problem/11650

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

Input

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

Output

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

Example

input

5
3 4
1 1
1 -1
2 2
3 3

output

1 -1
1 1
2 2
3 3
3 4

Solution & Inpression

정렬조건을 Comparator을 이용하여 정의하여 Arrays.sort()함수를 이용하여 정렬뒤 출력하였습니다.

Code

언어 : JAVA

메모리 : 179020 kb

실행 시간 : 1352 ms

import java.awt.Point;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Silver5_11650_좌표정렬하기 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt(); // 점의 개수
        Point[] points = new Point[N];

        for (int i = 0; i < N; i++) {
            points[i] = new Point(sc.nextInt(), sc.nextInt());
        }

        Arrays.sort(points, new Comparator<Point>() {

            @Override
            public int compare(Point o1, Point o2) {
                if (o1.x != o2.x)
                    return o1.x - o2.x;
                else
                    return o1.y - o2.y;
            }
        });
        StringBuilder sb = new StringBuilder();
        for (Point point : points) {
            sb.append(point.x).append(" ").append(point.y).append("\n");
        }
        System.out.println(sb);
    }
}

'Problem > BOJ' 카테고리의 다른 글

[BOJ] 2164. 카드2 - (Java)  (0) 2020.04.02
[BOJ] 1920. 수 찾기 - (Java)  (0) 2020.04.02
[BOJ] 10814. 나이순 정렬 - (Java)  (0) 2020.04.02
[BOJ] 2751. 수 정렬하기 2 - (Java)  (0) 2020.04.02
[BOJ] 1181. 단어정렬 - (Java)  (0) 2020.04.02