알고리즘

[프로그래머스] 이중우선순위큐 - 힙 (Heap) Level 3 (Java)

뚜키 💻 2022. 3. 9. 01:29
반응형

[프로그래머스] 이중우선순위큐 (Java)

힙 (Heap) - Level 3

 

 

👉 문제 링크

 

코딩테스트 연습 - 이중우선순위큐

 

programmers.co.kr

👉 문제 풀이 전체 소스 (github)

 

GitHub - jennie267/algorithm: 알고리즘

알고리즘. Contribute to jennie267/algorithm development by creating an account on GitHub.

github.com

 

 

문제 설명

이중 우선순위 큐는 다음 연산을 할 수 있는 자료구조를 말합니다.

이중 우선순위 큐가 할 연산 operations가 매개변수로 주어질 때, 모든 연산을 처리한 후 큐가 비어있으면 [0,0] 비어있지 않으면 [최댓값, 최솟값]을 return 하도록 solution 함수를 구현해주세요.

 

제한사항

  • operations는 길이가 1 이상 1,000,000 이하인 문자열 배열입니다.
  • operations의 원소는 큐가 수행할 연산을 나타냅니다.
    • 원소는 “명령어 데이터” 형식으로 주어집니다.- 최댓값/최솟값을 삭제하는 연산에서 최댓값/최솟값이 둘 이상인 경우, 하나만 삭제합니다.
  • 빈 큐에 데이터를 삭제하라는 연산이 주어질 경우, 해당 연산은 무시합니다.

 

 

 

 

 

입출력 예제

 

입출력 예 설명

16을 삽입 후 최댓값을 삭제합니다. 비어있으므로 [0,0]을 반환합니다.
7,5,-5를 삽입 후 최솟값을 삭제합니다. 최대값 7, 최소값 5를 반환합니다.

 

 

문제 풀이

import java.util.Comparator;
import java.util.PriorityQueue;
class Solution {
    public int[] solution(String[] operations) {
        PriorityQueue<Integer> min = new PriorityQueue<>();
        PriorityQueue<Integer> max = new PriorityQueue<>(Comparator.reverseOrder());

        for (String or : operations) {
            if (or.startsWith("I")) {
                int num = Integer.parseInt(or.substring(2));
                min.offer(num);
                max.offer(num);
            } else {
                if (min.isEmpty()) continue;

                int minNum = min.peek();
                int maxNum = max.peek();

                if (Integer.parseInt(or.substring(2)) > 0) {
                    min.remove(maxNum);
                    max.poll();
                } else {
                    min.poll();
                    max.remove(minNum);
                }
            }
        }

        if (min.isEmpty()) {
            return new int[]{0,0};
        }
        return new int[]{max.peek(),min.peek()};
    }
}
반응형