본문 바로가기
Algorithm/Baekjoon

Baekjoon 1181 단어 정렬JAVA

by Hunveloper 2022. 1. 13.
728x90
 

1181번: 단어 정렬

첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.

www.acmicpc.net

문제

알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램을 작성하시오.

  1. 길이가 짧은 것부터
  2. 길이가 같으면 사전 순으로
입력

첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.

출력

조건에 따라 정렬하여 단어들을 출력한다. 단, 같은 단어가 여러 번 입력된 경우에는 한 번씩만 출력한다.

코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {

	public static void main(String[] args) throws Exception{
		// TODO Auto-generated method stub
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[][] arr = new String[51][n];
		String[] brr=new String[20000];
		Integer[] cnt=new Integer[51];
		
		Arrays.fill(cnt, 0);
		for(int i=0;i<n;i++) {
			String temp=br.readLine();
			arr[temp.length()][cnt[temp.length()]++]=temp;
		}
	
		for(int i=1;i<51;i++) {
			Arrays.sort(arr[i], 0, cnt[i]);
			
			String prev="";
			for(int j=0;j<cnt[i];j++) {
				if(prev.compareTo(arr[i][j])!=0) {
					prev=arr[i][j];
					System.out.println(arr[i][j]);					
				}
			}
		}
	}
}
728x90
728x90

'Algorithm > Baekjoon' 카테고리의 다른 글

Baekjoon 2748 피보나치 수 2 JAVA  (0) 2022.01.13
Baekjoon 2747 피보나치 수 JAVA  (0) 2022.01.13
Baekjoon 1978 소수 찾기 JAVA  (0) 2022.01.13
Baekjoon 11050 이항 계수 1 JAVA  (0) 2022.01.13
Baekjoon 2839 설탕 배달 JAVA  (0) 2022.01.13

댓글