알고리즘

[프로그래머스/JAVA] 프린터

데메즈 2021. 11. 16. 23:09
728x90
반응형

https://programmers.co.kr/learn/courses/30/lessons/42587?language=java 

 

코딩테스트 연습 - 프린터

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

programmers.co.kr

import java.util.LinkedList;
import java.util.Queue;

class Solution {
    class Task{
        int location;
        int priority;
        public Task(int location, int priority){
            this.location = location;
            this.priority = priority;
        }
    }
    public int solution(int[] priorities, int location) {
        int answer = 0;
        
        Queue<Task> queue = new LinkedList<>();
        
        for(int i=0; i<priorities.length; i++){
            queue.add(new Task(i, priorities[i]));
        }
        
        int now = 0;
        while(!queue.isEmpty()){
            boolean flag = false;
            Task cur = queue.poll(); // 가장 먼저 보관한 값 꺼내고 반환
            for(Task t : queue){
                if(t.priority > cur.priority){
                    flag = true; // 우선순위 더 높은게 있는 경우
                }
            }
            if(flag == true){
                queue.add(cur); // 뒤로 보냄
            } else {
                now++;
                if(cur.location == location){
                    answer = now;
                    break;
                }
            }
        }
        
        return answer;
    }
}

재밌다 ㅎㅎ

728x90
반응형

'알고리즘' 카테고리의 다른 글

[재귀함수] Counting Cells in a Blob  (0) 2021.11.30
[재귀함수] 미로찾기  (0) 2021.11.29
[프로그래머스/C++] 베스트앨범  (0) 2021.10.13
[C++] vector, map  (0) 2021.10.06
[프로그래머스/C++] 위장  (0) 2021.10.06