[프로그래머스] 디스크 컨트롤러 (python 파이썬)
👉 디스크 컨트롤러
✍ 내 코드
# 2레벨 코딩테스트 고득점 Kit 디스크 컨트롤러
import heapq as hq
from collections import deque
def solution(jobs):
deq = deque(sorted(jobs))
heap = []
time = 0
result = 0
while deq or heap:
if deq and deq[0][0] <= time:
t = deq.popleft()
hq.heappush(heap, (t[1], t[0]))
if heap:
t = hq.heappop(heap)
time += t[0]
result += time - t[1]
else:
time += 1
return int(result / len(jobs))
if __name__ == "__main__":
print(solution([[0, 3], [1, 9], [2, 6]]))
✍ 팁
- 힙 푸쉬를 할때 들어오는 시간을 같이 넣어주고 빼는 시점에서 차이값을 더하고 나누어주면 결과나온다.
Author And Source
이 문제에 관하여([프로그래머스] 디스크 컨트롤러 (python 파이썬)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@coding_egg/프로그래머스-디스크-컨트롤러-python-파이썬저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)