190106 힙 (4) 이중 우선순위 큐

2019-01-06

힙 (4) 이중 우선순위 큐

문제 설명

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

명령어 수행 명령
I 숫자 큐에 주어진 숫자를 삽입합니다.
D 1 큐에서 최댓값을 삭제합니다.
D -1 큐에서 최솟값을 삭제합니다.

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

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

풀이 과정
  • ArrayList에 요소를 하나 넣을때마다 오름차순 정렬한다.
  • D 1이면 맨 끝 요소(인덱스: ArrayList의 크기-1) 삭제. D -1이면 맨 첫 요소(인덱스: 0) 삭제
  • ArrayList에 값이 하나만 남은경우 최대값=최소값으로 출력
  • ArrayList가 비어있는 경우 0,0
import java.util.*;

class Solution {
    public int[] solution(String[] operations) {
        int[] answer = new int[2];
        ArrayList<Integer> queue=new ArrayList<Integer>();
        
        for(int i=0;i<operations.length;i++){
            char op=operations[i].charAt(0);
            int element=Integer.parseInt(operations[i].substring(2,operations[i].length()));
            
            switch(op){
                case 'I':
                    queue.add(element);
                    Collections.sort(queue);
                    break;
                case 'D':
                    if(!queue.isEmpty()){
                        if(element==1){
                           queue.remove(queue.size()-1);
                        }else if(element==-1){
                            queue.remove(0);
                        }
                    }
                    break;
            }
        }
        
        if(!queue.isEmpty()&&queue.size()>=2){
            answer[0]=queue.get(queue.size()-1);
            answer[1]=queue.get(0);
        }else if(queue.size()==1){
            answer[0]=queue.get(0);
            answer[1]=answer[0];
        }else{
            answer[0]=0;
            answer[1]=0;
        }
        return answer;
    }
}