728x90
반응형
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
PriorityQueue<Integer> pq = new PriorityQueue<>();
for (int i = 0; i < n; i++) {
int num = Integer.parseInt(br.readLine());
if(num==0){
if(!pq.isEmpty()){
System.out.println(pq.poll());
}else{
System.out.println(0);
}
}else{
pq.add(num);
}
}
}
}
728x90
반응형
'알고리즘 > 힙(우선순위큐)' 카테고리의 다른 글
[백준] 11286번 절대값 힙 #Java (0) | 2022.05.27 |
---|---|
[백준] 16435번 스네이크버드 #Java (0) | 2022.05.24 |
[백준] 11279번 최대 힙 (0) | 2022.05.17 |