forked from codedecks-in/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path621-Task-Scheduler.py
More file actions
32 lines (20 loc) · 888 Bytes
/
621-Task-Scheduler.py
File metadata and controls
32 lines (20 loc) · 888 Bytes
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
31
32
"""
Given a characters array tasks, representing the tasks a CPU needs to do, where each letter represents a different task.
Tasks could be done in any order. Each task is done in one unit of time. For each unit of time,
the CPU could complete either one task or just be idle.
However, there is a non-negative integer n that represents the cooldown period between
two same tasks (the same letter in the array),
is that there must be at least n units of time between any two same tasks.
Memory ->14.4MB
runtime ->412ms
"""
class Solution:
def leastInterval(self, tasks: List[str], n: int) -> int:
counter=Counter(tasks)
freq=sorted(list(counter.values()))
max_idle=freq.pop()
total=(max_idle-1)*n
while freq and total>0:
total=total-min(max_idle-1,freq.pop())
total=max(0,total)
return len(tasks) + total