Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- dynamic programming
- Matrix
- Data Structure
- Stack
- 코테
- greedy
- implement
- Binary Tree
- bit manipulation
- two pointers
- hash table
- Tree
- string
- database
- simulation
- array
- 자바
- Class
- SQL
- Number Theory
- geometry
- Math
- sorting
- Binary Search
- 구현
- java
- Counting
- 코딩테스트
- Method
- 파이썬
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 10989. 수 정렬하기 3 본문
- 입력: 첫째 줄에 수의 개수 N(1 ≤ N ≤ 10,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 수가 주어진다. 이 수는 10,000보다 작거나 같은 자연수이다.
- 출력: 첫째 줄부터 N개의 줄에 오름차순으로 정렬한 결과를 한 줄에 하나씩 출력한다. 카운팅 정렬을 사용한다.
import java.util.*;
import java.io.*;
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[] nums = new int[Integer.valueOf(br.readLine())];
int max = Integer.MIN_VALUE;
for(int i=0 ; i<nums.length ; i++){
nums[i] = Integer.valueOf(br.readLine());
if(nums[i]>max) max = nums[i];
}
int[] counting = new int[max+1];
for(int i : nums)
counting[i]++;
for(int i=1 ; i<counting.length ; i++)
counting[i] += counting[i-1];
int[] result = new int[nums.length];
for(int i=0 ; i<nums.length ; i++)
result[--counting[nums[i]]] = nums[i];
for(int i=0; i<nums.length ; i++)
bw.write(result[i]+"\n");
bw.flush(); bw.close();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 10815. 숫자 카드 (0) | 2023.04.08 |
---|---|
[백준 온라인 저지] 1427. 소트인사이드 (0) | 2023.04.07 |
[백준 온라인 저지] 2751. 수 정렬하기 2 (0) | 2023.04.07 |
[백준 온라인 저지] 25305. 커트라인 (0) | 2023.04.07 |
[백준 온라인 저지] 2587. 대표값2 (0) | 2023.04.07 |