안녕하세요. 이번에는 백준 1927 최소 힙 문제를 풀어보려고 합니다.
https://www.acmicpc.net/problem/1927
Problem
널리 잘 알려진 자료구조 중 최소 힙이 있다. 최소 힙을 이용하여 다음과 같은 연산을 지원하는 프로그램을 작성하시오.
- 배열에 자연수 x를 넣는다.
- 배열에서 가장 작은 값을 출력하고, 그 값을 배열에서 제거한다.
프로그램은 처음에 비어있는 배열에서 시작하게 된다.
Solution
import java.io.*;
import java.util.*;
public class Main {
static StringBuilder sb = new StringBuilder();
static PriorityQueue<Integer> pq = new PriorityQueue<>();
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
for(int i = 0; i < N; i++) {
int num = Integer.parseInt(br.readLine());
switch(num) {
case 0 :
Print();
break;
default:
Add(num);
break;
}
}
System.out.println(sb.toString());
}
static void Print() {
if(pq.isEmpty()) {
sb.append("0");
} else {
sb.append(pq.poll());
}
sb.append("\n");
}
static void Add(int num) {
pq.offer(num);
}
}
Performance
반응형
'백준 Algorithm > 백준 CLASS3' 카테고리의 다른 글
[백준] CLASS3 2606 바이러스 - JAVA [자바] (0) | 2023.10.26 |
---|---|
[백준] CLASS3 1931 회의실 배정 - JAVA [자바] (2) | 2023.10.25 |
[백준] CLASS3 1764 듣보잡 - JAVA [자바] (2) | 2023.10.23 |
[백준] CLASS3 1697 숨바꼭질 - JAVA [자바] (0) | 2023.10.22 |
[백준] CLASS3 1620 나는야 포켓몬 마스터 이다솜 - JAVA [자바] (0) | 2023.10.21 |