728x90
반응형
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Collections;
import java.util.PriorityQueue;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
// 가장 큰 수일수록 앞에 나온다.
PriorityQueue<Integer> pq = new PriorityQueue<>(Collections.reverseOrder());
int n = Integer.parseInt(br.readLine());
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.offer(num);
}
}
}
}
728x90
반응형
'알고리즘 > 힙(우선순위큐)' 카테고리의 다른 글
[백준] 11286번 절대값 힙 #Java (0) | 2022.05.27 |
---|---|
[백준] 16435번 스네이크버드 #Java (0) | 2022.05.24 |
[백준] 1927번 최소 힙 #Java (0) | 2022.05.16 |