https://www.acmicpc.net/problem/10989
시간을 단축하기 위해 Scanner 대신 BufferedReader 사용하였고 출력도 StringBuilder를 사용하였다.
정렬로 계수정렬(counting sort)를 사용하였다
*Counting sort 시간복잡도: O(n)
->10000보다 작거나 같은 자연수라고 했기 때문에 계수정렬을 사용할 수 있다.
수를 입력받을 때마다 해당 숫자의 cnt값 1 증가시키면 1부터 10000까지 중복을 포함한 정렬을 할 수 있다.
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int n = Integer.parseInt(br.readLine());
int[] cnt = new int[10001];
for (int i = 0; i < n; i++) {
cnt[Integer.parseInt(br.readLine())]++;
}
for(int i = 1; i <10001; i++){
while(cnt[i]>0){
sb.append(i+"\n");
cnt[i]--;
}
}
System.out.println(sb);
}
}
'프로그래밍 > 백준 문제풀이' 카테고리의 다른 글
백준 1920: 수 찾기 / 이진 탐색(binary search) (0) | 2022.08.09 |
---|---|
백준 1929: 소수 구하기(JAVA) / 에라토스테네스의 체 (0) | 2022.08.09 |
백준 10816: 숫자 카드 2(JAVA) (0) | 2022.07.19 |
백준 1181: 단어 정렬 (0) | 2022.07.17 |
백준 10815: 숫자 카드(JAVA) (0) | 2022.07.17 |