https://www.acmicpc.net/problem/11651
import java.awt.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.StringTokenizer;
class Point implements Comparable<Point> {
public int x, y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
@Override
public int compareTo(Point p) {
if(this.y == p.y) return this.x - p.x;
else return this.y - p.y;
}
}
public class Main{
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
int n = Integer.parseInt(br.readLine());
ArrayList<Point> arr = new ArrayList<Point>();
for(int i=0; i<n; i++){
st = new StringTokenizer(br.readLine());
int x = Integer.parseInt(st.nextToken());
int y = Integer.parseInt(st.nextToken());
arr.add(new Point(x, y));
}
Collections.sort(arr);
for (Point p : arr) {
System.out.println(p.x+" "+p.y);
}
}
}
11650번과 같은데 이번엔 y가 같으면 x좌표가 증가하는 순이다.
'ALGORITHM' 카테고리의 다른 글
[JAVA] 백준 10814번- 나이순 정렬 (0) | 2022.09.29 |
---|---|
[JAVA] 백준 1181번 - 단어 정렬 (0) | 2022.09.28 |
[JAVA] 백준 11650번 - 좌표 정렬하기 (0) | 2022.09.28 |
[JAVA] 알고리즘 : DFS- 순열 추측하기 (0) | 2022.09.27 |
[JAVA] 백준 1427번 - 소트인사이드 (0) | 2022.09.27 |