https://www.acmicpc.net/problem/1927
Java 의 PriorityQueue 는 기본적으로 최소 힙을 사용한다.
PriorityQueue 의 메서드들을 사용할 줄 알면 쉽게 풀 수 있는 문제이다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
PriorityQueue<Integer> pq = new PriorityQueue<>();
int n = Integer.parseInt(bf.readLine());
// System.out.println(N);
for(int i=0; i<n; i++){
int input = Integer.parseInt(bf.readLine());
if(input == 0){
if(pq.isEmpty()) System.out.println(0);
else System.out.println(pq.poll());
}
else{
pq.offer(input);
}
}
}
}
'Solved > BOJ' 카테고리의 다른 글
[백준 1620] 나는야 포켓몬 마스터 이다솜 (0) | 2023.04.29 |
---|---|
[백준 11286] 절댓값 힙 (0) | 2023.04.28 |
[백준 1464] 뒤집기 3 (0) | 2023.04.26 |
[백준 5430] AC (0) | 2023.04.26 |
[백준 1021] 회전하는 큐 (0) | 2023.03.31 |