[백준] 11286번 절댓값 힙 / Java, Python

Jini·2021년 6월 3일
0

백준

목록 보기
126/226

Baekjoon Online Judge

algorithm practice


- 단계별 문제풀기


22. 우선순위 큐

가장 작은/큰 원소를 뽑는 자료구조를 배워 봅시다.




Java / Python


3. 절댓값 힙

11286번

새로운 기준으로 뽑는 우선순위 큐를 만드는 문제



이번 문제는 절댓값 힙을 이용하여 연산을 하는 프로그램을 작성하는 문제입니다. 연산은 아래 두 종류 입니다.

1. 배열에 정수 x (x != 0) 를 넣는다.
2. 배열에서 절댓값이 가장 작은 값을 출력하고, 그 값을 배열에서 제거한다.



  • Java

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

public class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
		int N = Integer.parseInt(br.readLine());
		// 최소 힙
		PriorityQueue<Integer> queue = new PriorityQueue<>((o1, o2) -> {
			int abs1 = Math.abs(o1);
			int abs2 = Math.abs(o2);
            
			if(abs1 == abs2) return o1 > o2 ? 1 : -1;
			return abs1 - abs2;
		});
		for (int i = 0; i < N; i++) {
			int num = Integer.parseInt(br.readLine());
			if (num == 0) {
				if (queue.isEmpty()) {
					bw.write("0\n");
				} else {
					bw.write(queue.poll() + "\n");
				}
			} else {
				queue.add(num);
			}
		}
		bw.flush();
		bw.close();
		br.close();
	}
}




  • Python



  • heapq 모듈 활용

import sys
import heapq

N = int(sys.stdin.readline())
heap = []

# ABS Heap
for _ in range(N):
    num = int(sys.stdin.readline())
    
    if num == 0:
        if heap:
            print(heapq.heappop(heap)[1])
        else:
            print("0")
        
    else:
        heapq.heappush(heap, (abs(num), num))





profile
병아리 개발자 https://jules-jc.tistory.com/

0개의 댓글