[백준 1927] 최소 힙

https://www.acmicpc.net/problem/1927

 

1927번: 최소 힙

첫째 줄에 연산의 개수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 N개의 줄에는 연산에 대한 정보를 나타내는 정수 x가 주어진다. 만약 x가 자연수라면 배열에 x라는 값을 넣는(추가하는) 연산이고, x가 0

www.acmicpc.net

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