[Silver V] 단어-정렬 - 1181
성능 요약
메모리: 22284 KB, 시간: 564 ms
분류
정렬(sorting), 문자열(string)
문제 설명
알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램을 작성하시오.
길이가 짧은 것부터 길이가 같으면 사전 순으로
입력
첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.
출력
조건에 따라 정렬하여 단어들을 출력한다. 단, 같은 단어가 여러 번 입력된 경우에는 한 번씩만 출력한다.
package solved.Class;
import java.io.*;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.TreeSet;
class StringClass implements Comparable<StringClass>{
String a;
StringClass(String a) {
this.a = a;
}
@Override
public int compareTo(StringClass o) {
if(this.a.length() > o.a.length())
return 1;
else if(this.a.length() == o.a.length()){
return this.a.compareTo(o.a); //a가 문자열상 더 크면(뒤면) return1
}
return -1; //유지
}
}
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int n = Integer.parseInt(br.readLine());
TreeSet<StringClass> list = new TreeSet<>();
while (n-->0)
list.add(new StringClass(br.readLine()));
for(StringClass result : list)
System.out.println(result.a);
}
}
자바 객체, 클래스 정렬은 아래 링크
https://thalals.tistory.com/19?category=472956
'알고리즘 문제' 카테고리의 다른 글
[java] boj 1929 소수찾기 - 에라토스테네스의 체 (0) | 2022.01.15 |
---|---|
[프로그래머스] Level2 "카카오프렌즈 컬러링북" - BFS (0) | 2022.01.10 |
[JAVA]백준 체스판 다시 칠하기 - boj1018 (0) | 2022.01.07 |
[Python] boj 18258 "큐2" (0) | 2021.10.26 |
[Python] boj 10773 "제로" (0) | 2021.10.26 |