반응형
https://www.acmicpc.net/problem/1927
우선순위 큐 사용(오름차순) -> PriorityQueue pq=new PriorityQueue<>();
import java.io.*;
import java.util.*;
import java.time.*;
public class Main {
public static void main(String[] args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine()); //연산의 개수
PriorityQueue<Long> pq=new PriorityQueue<>();
for(int i=0;i<N;i++) { //연산 반복
long val = Integer.parseInt(br.readLine());
if(val>0) {
pq.add(val);
}else if(val==0) {
if(pq.isEmpty())
System.out.println(0);
else
System.out.println(pq.poll());
}
}
}// main()
}// class Main
728x90
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
백준 4963 : 섬의 개수 _자바 Java (0) | 2023.01.26 |
---|---|
백준 11279 : 최대 힙 _자바 Java (0) | 2023.01.26 |
백준 10699 : 오늘 날짜 _자바 Java (1) | 2023.01.25 |
백준 14889 : 스타트와 링크 _자바 Java (0) | 2023.01.25 |
백준 1654 : 랜선 자르기 _자바 Java (0) | 2023.01.25 |
댓글