문제 > https://www.acmicpc.net/problem/1181
관련 내용 >
2022.01.19 - [뚝딱뚝딱/Java] - [Java] Arrays.sort() 재정의하기 / Comparator 재정의 / 정렬 조건 바꾸기
작성한 코드 >
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.Comparator;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
String[] arr = new String[n];
for (int i = 0; i < n; i++) {
arr[i] = br.readLine();
}
Arrays.sort(arr, new Comparator<String>() {
@Override
public int compare(String o1, String o2) {
if (o1.length() == o2.length()) {
System.out.println(o1.compareTo(o2));
return o1.compareTo(o2);
} else {
return o1.length() - o2.length();
}
}
});
System.out.println(arr[0]);
for (int i = 1; i < n; i++) {
if (!arr[i].equals(arr[i - 1])) {
System.out.println(arr[i]);
}
}
}
}
'알고리즘' 카테고리의 다른 글
[BOJ / Python] 10819 차이를 최대로 (0) | 2023.01.03 |
---|---|
2. 완전 탐색 (0) | 2023.01.03 |
[BOJ] 17298 오큰수 (0) | 2023.01.02 |
1. 자료 구조 (0) | 2022.12.26 |
[알고리즘] BinarySearch # lowerBound / upperBound (0) | 2022.01.26 |