[JAVA] SWEA 2930 - 힙

hyng·2022년 4월 6일
0

SWEA

목록 보기
66/78

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();

        Queue<Integer> heap = new PriorityQueue<>(Comparator.reverseOrder());

        int T = sc.nextInt();
        for(int tc=1; tc<=T; tc++){
            sb.append("#").append(tc).append(" ");

            heap.clear();
            int N = sc.nextInt();
            for(int i=0; i<N; i++){
                int op = sc.nextInt();
                if(op == 1){
                    int num = sc.nextInt();
                    heap.add(num);
                }
                else if(op == 2){
                    if(heap.isEmpty())
                        sb.append(-1);
                    else
                        sb.append(heap.poll());
                    sb.append(" ");
                }
            }
            sb.append("\n");
        }

        System.out.println(sb);
    }
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글