Study & Project ✏️/알고리즘 📋

백준[JAVA] 11279.최대 힙 - 자바

JM 2022. 11. 5. 23:44
반응형

📖 문제

📃 코드

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Collections;
import java.util.PriorityQueue;

public class Main {
    static PriorityQueue<Integer> heap = new PriorityQueue<>(Collections.reverseOrder());
    

    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/11279

 

11279번: 최대 힙

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

www.acmicpc.net