728x90
문제
https://www.acmicpc.net/problem/11650
접근 방법
- x좌표랑 y좌표를 순서대로 정렬한다음 출력하는 문제이다.
- 따라서 Comparable, Comparator 두 가지 방법이 있지만 일반적으로 좌표를 정렬할때 기준이 없기 때문에 Comparator로 구현하는것이 낫겠다고 판단하였다.
코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.Comparator;
import java.util.StringTokenizer;
public class Main {
private static StringBuilder sb;
private static BufferedReader br;
private static StringTokenizer st;
private static int N;
private static int[][] arr;
//입력
public static void input() throws Exception {
br = new BufferedReader(new InputStreamReader(System.in));
sb = new StringBuilder();
N = Integer.parseInt(br.readLine());
arr = new int[N][2];
for(int i = 0 ; i < N ; i++){
st = new StringTokenizer(br.readLine());
arr[i][0] = Integer.parseInt(st.nextToken());
arr[i][1] = Integer.parseInt(st.nextToken());
}
}
//실행
public static void process() {
Arrays.sort(arr, new Comparator<int[]>(){
@Override
public int compare(int[] o1, int[] o2){
if(o1[0] == o2[0]){
return o1[1]-o2[1];
}
return o1[0] - o2[0];
}
});
for(int i = 0 ; i < N ; i++){
sb.append(arr[i][0] +" "+arr[i][1]).append("\n");
}
System.out.println(sb);
}
public static void main(String[] args) throws Exception {
input();
process();
}
}
'코딩테스트 > 백준' 카테고리의 다른 글
[Java] 백준 11866번 : 요세푸스 문제 0 (0) | 2024.05.09 |
---|---|
[Java] 백준 11651번 : 좌표 정렬하기 2 (0) | 2024.05.09 |
[Java] 백준 11050번 : 이항 계수 1 (0) | 2024.05.09 |
[Java] 백준 10989번 : 수 정렬하기 3 (0) | 2024.05.09 |
[Java] 백준 10816번 : 숫자 카드 2 (0) | 2024.05.07 |