Algorithms/Java

99클럽 코테 스터디 10일차 TIL + 최대 힙 (java)

Jenn28 2024. 7. 31. 14:25

 

💡 문제

권장 시간

  • 1시간 30분

소요 시간

  • 5분

풀이 코드

import java.io.*;
import java.util.*;

public class BOJ11279 {
    public void solution() throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        PriorityQueue<Integer> pq = new PriorityQueue<>(new Comparator<Integer>() {
            @Override
            public int compare(Integer o1, Integer o2) {
                return o2 - o1;
            }
        });

        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(0);
                } else {
                    System.out.println(pq.poll());
                }
            } else {
                pq.add(num);
            }
        }
    }

    public static void main(String[] args) throws Exception {
        new BOJ11279().solution();
    }
}

주요사항

우선순위 큐에 정렬을 활용하면 금방 풀 수 있는 문제!