[문제 바로가기] https://www.acmicpc.net/problem/1181
알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램을 작성하시오.
첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.
조건에 따라 정렬하여 단어들을 출력한다. 단, 같은 단어가 여러 번 입력된 경우에는 한 번씩만 출력한다.
Arrays.sort()
는 기본적으로 compare()
메소드를 사용하고 있는데, compare()
메소드는 두 값의 차이가 양의 정수일 때는 바뀌지만, 0 이나 음의 정수인 경우는 두 객체의 위치는 바뀌지 않는다. 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[] str = new String[N];
for(int i = 0; i < N; i++)
{
str[i] = br.readLine();
}
Arrays.sort(str, (o1, o2) -> {
if(o1.toString().length() == o2.toString().length())
return o1.compareTo(o2);
else
return o1.toString().length() - o2.toString().length();
});
//중복되는 단어는 한 번만..
System.out.println(str[0]);
for(int i = 1; i < N; i++) {
if(!str[i].equals(str[i-1])) { //같지 않으면..
System.out.println(str[i]);
}
}
}
}
Arrays.sort()
부분을 Comparator을 써서 compare()
메소드를 구현하는 방법으로 작성할 수 있다.
Arrays.sort(str, new Comparator<String>() {
public int compare(String s1, String s2) {
if(s1.length() == s2.length())
return s1.compareTo(s2);
else
return s1.length() - s2.length();
}
});