반응형
📖 문제
📃 코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
public class Main {
static PriorityQueue<Integer> heap = 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 x = Integer.parseInt(br.readLine());
mHeap(x);
}
}
private static void mHeap(int x) {
if(x == 0){
if(heap.size() == 0){
System.out.println(0);
}else {
System.out.println(heap.remove());
}
}else{
heap.offer(x);
}
}
}
🔗 링크
https://www.acmicpc.net/problem/1927
'Study & Project ✏️ > 알고리즘 📋' 카테고리의 다른 글
[알고리즘] 플로이드 와샬 알고리즘 - 자바 (0) | 2022.11.06 |
---|---|
백준[JAVA] 11279.최대 힙 - 자바 (0) | 2022.11.05 |
백준[JAVA] 11726.2×n 타일링 - 자바 (0) | 2022.11.05 |
백준[JAVA] 9095.1, 2, 3 더하기 - 자바 (0) | 2022.11.02 |
백준[JAVA] 1463.1로 만들기 - 자바 (0) | 2022.11.01 |