[프로그래머스 - Java] 디스크 컨트롤러

민채·2021년 7월 19일
0

문제

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

설명

우선순위 큐를 이용해 문제를 해결했다.

  1. 요청 시간을 기준으로 jobs 배열을 오름차순으로 정렬
  2. 모든 작업이 처리될 때까지 반복
    • 반복문 안에서 특정 작업이 처리되는 동안 들어오는 요청을 우선순위 큐에 삽입 (이때 큐는 처리 시간을 기준으로 오름차순 정렬)
    • 큐가 비어있지 않은 경우
      • 큐에서 작업을 꺼내고 answer에 (처리 시간 + 작업이 끝난 시간 - 요청 시간)을 더해준다.
      • time(현재 시간)에 작업의 처리 시간을 더한다.
      • cnt(처리된 디스크 개수)를 증가시킨다.
    • 큐가 비어있을 경우
      • time(현재 시간)을 현재 작업의 요청 시간으로 한다.
  3. 평균 시간을 구하는 것이기 때문에 (answer / jobs.length)를 반환

소스코드

import java.util.Arrays;
import java.util.PriorityQueue;

class Job implements Comparable<Job> {
    int request;
    int working;
	
    public Job(int request, int working) {
        this.request = request;
        this.working = working;
    }

    @Override
    public int compareTo(Job o) {
        // 처리 시간을 기준으로 오름차순 정렬
        return this.working - o.working;
    }
}

public class DiskController {

    public static void main(String[] args) {
        int[][] j = {{0, 3}, {1, 9}, {2, 6}};
        System.out.println(solution(j));
    }
	
    public static int solution(int[][] jobs) {		
        // 요청 시간을 기준으로 오름차순 정렬
        Arrays.sort(jobs, ((o1, o2) -> o1[0]-o2[0]));
		
        PriorityQueue<Job> pq = new PriorityQueue<>();

        int cnt = 0; // 처리된 디스크
        int idx = 0; // jobs의 인덱스
        int time = 0; // 특정 작업 끝난 시간
        int answer = 0;
        
        // 모든 작업이 처리될 때까지 반복
        while (cnt < jobs.length) {
            // 특정 작업이 수행되는 동안 들어오는 요청을 큐에 넣어줌
            while (idx < jobs.length && jobs[idx][0] <= time) {
                pq.add(new Job(jobs[idx][0], jobs[idx][1]));
                idx++;
            }
        	
            if (!pq.isEmpty()) {
                Job job = pq.poll();
        		
                // (처리 시간 + 작업이 끝난 시간 - 요청 시간)을 더함
                answer += job.working + time - job.request;
                time += job.working;
                cnt++;
            }
            else {
                // 큐가 비어있는 경우 -> 특정 작업이 끝날 때까지 아무 작업도 요청하지 않는 것
                // time을 특정 작업의 요청 시간으로 함
                time = jobs[idx][0];
            }
        }
        
        return answer / jobs.length;
    }

}

GITHUB

https://github.com/MinchaeKwon/Programmers/blob/master/Level3/src/DiskController.java

profile
코딩계의 떠오르는 태양☀️

0개의 댓글

관련 채용 정보