일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- attribute
- 715. Range Module
- 파이썬
- 109. Convert Sorted List to Binary Search Tree
- t1
- shiba
- Decorator
- Python Implementation
- Python Code
- 315. Count of Smaller Numbers After Self
- concurrency
- iterator
- Generator
- kaggle
- 30. Substring with Concatenation of All Words
- 43. Multiply Strings
- Substring with Concatenation of All Words
- data science
- Protocol
- 시바견
- Python
- DWG
- 운영체제
- Class
- 컴퓨터의 구조
- 밴픽
- LeetCode
- 프로그래머스
- Convert Sorted List to Binary Search Tree
- Regular Expression
Archives
- Today
- Total
Scribbling
프로그래머스: 디스크 컨트롤러 본문
Priority Queue를 이용하면 쉽게 풀 수 있다.
알고리즘은 '대기 큐에 들어온 Task 중 수행 시간이 가장 짧은 Task를 먼저 처리한다'가 답이다.
이는 운영체제 CPU 스케줄링 방식 중 하나인 SJF (Shortest Job First)와 유사하다.
SJF가 궁금하다면, https://focalpoint.tistory.com/96?category=918151
import heapq
def solution(jobs):
answer = 0
length = len(jobs)
heapq.heapify(jobs)
# 현재 시각
t = 0
# [소요 시간, 요청 시각]
pq = []
while jobs:
# 요청 시각 <= t인 작업들을 priority_queue에 삽입
while True:
while jobs and jobs[0][0] <= t:
job = heapq.heappop(jobs)
heapq.heappush(pq, [job[1], job[0]])
if pq:
break
else:
t += 1
# Task 처리
dur, rt = heapq.heappop(pq)
t += dur
answer += t - rt
# pq 잔챙이 처리
while pq:
dur, rt = heapq.heappop(pq)
t += dur
answer += t - rt
return answer // length
'Computer Science > Coding Test' 카테고리의 다른 글
프로그래머스: H-Index (0) | 2021.10.18 |
---|---|
프로그래머스: 이중 우선 순위 큐 (0) | 2021.10.16 |
프로그래머스: 더 맵게 (0) | 2021.10.16 |
프로그래머스: 주식 가격 (0) | 2021.10.16 |
프로그래머스: 다리를 지나는 트럭 (0) | 2021.10.15 |