티스토리 뷰
문제 출처 - https://www.acmicpc.net/problem/11650
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int[][] arr = new int[n][2];
for(int i=0; i<n; i++) {
arr[i][0] = scan.nextInt();
arr[i][1] = scan.nextInt();
}
Arrays.sort(arr, new Comparator<int[]>() {
@Override
public int compare(int[] x, int[] y) {
if(x[0] == y[0]) {
return Integer.compare(x[1], y[1]);
}
return Integer.compare(x[0],y[0]);
}
});
for(int i=0; i<n; i++)
System.out.println(arr[i][0] + " " + arr[i][1]);
}
}
기본 정렬로 문제에서 원하는대로 정렬이 되지 않기 때문에 comparator를 이용해 정렬
'ALGORITHM > 백준' 카테고리의 다른 글
[Python]백준 - 보물섬(2589번) (0) | 2020.02.13 |
---|---|
[Python]백준 - 수 이어 쓰기 1(1748번) (0) | 2020.02.12 |
[Python]백준 - 베르트랑 공준(4948번) (2) | 2020.02.11 |
[Python]백준 - 명령 프롬포트(1032번) (0) | 2020.02.11 |
[C++]백준 10809번 알파벳찾기 (0) | 2019.10.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 괄호
- Permutation
- left join
- 정렬
- BOJ
- 해시
- 백준
- C++
- SW Expert
- 힙
- programmers
- 구현
- hash
- 2020 KAKAO BLIND RECRUITMENT
- 파이썬
- dictionary
- 스택
- 2019 Kakao Blind Recruitment
- 우선순위큐
- 프로그래머스
- Python
- combination
- 문자열처리
- 완전탐색
- 딕셔너리
- 재귀
- 순열
- SWExpert
- 문자열
- 코딩테스트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함