상상쓰

[프로그래머스] 프린터 본문

Coding Test

[프로그래머스] 프린터

상상쓰 2021. 7. 27. 23:52

https://programmers.co.kr/learn/courses/30/lessons/42587

 

코딩테스트 연습 - 프린터

일반적인 프린터는 인쇄 요청이 들어온 순서대로 인쇄합니다. 그렇기 때문에 중요한 문서가 나중에 인쇄될 수 있습니다. 이런 문제를 보완하기 위해 중요도가 높은 문서를 먼저 인쇄하는 프린

programmers.co.kr

 

PriorityQueue 를 이용하여 중요도가 높은 순으로 인쇄(poll) 해준다. 대기목록에 우선순위가 가장 큰 값을 아래와 같이 for 를 통하여 차례대로 비교하면 중요도가 같은 문서에 대해서도 조건에 알맞게 답을 구할 수 있다.

 

import java.util.*;

class Solution {
    public int solution(int[] priorities, int location) {
        int answer = 1;
        PriorityQueue<Integer> queue = new PriorityQueue<>(Comparator.reverseOrder());
        
        for (int i=0;i<priorities.length;i++) {
            queue.add(priorities[i]);
        }
        
        while (queue.size() != 0) {
            for (int i=0;i<priorities.length;i++) {
                if (priorities[i] == queue.peek()) {
                    if (i == location) {
                        return answer;
                    } else {
                        queue.poll();
                        answer++;
                    }
                }
            }
        }
        
        return answer;
    }
}

'Coding Test' 카테고리의 다른 글

[프로그래머스] 베스트앨범  (0) 2021.07.29
[프로그래머스] 카펫  (0) 2021.07.28
[프로그래머스] 타겟 넘버  (0) 2021.07.26
[프로그래머스] 네트워크  (0) 2021.07.26
[백준] 스택  (0) 2021.07.23
Comments