Created
October 4, 2018 20:10
-
-
Save yokolet/60950004b612ce6ff1582abea1c69a66 to your computer and use it in GitHub Desktop.
Task Scheduler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Given a char array representing tasks CPU need to do. It contains capital letters A to | |
Z where different letters represent different tasks.Tasks could be done without | |
original order. Each task could be done in one interval. For each interval, CPU could | |
finish one task or just be idle. However, there is a non-negative cooling interval n | |
that means between two same tasks, there must be at least n intervals that CPU are | |
doing different tasks or just be idle. | |
You need to return the least number of intervals the CPU will take to finish all the | |
given tasks. | |
- The number of tasks is in the range [1, 10000]. | |
- The integer n is in the range [0, 100]. | |
Example: | |
Input: tasks = ["A","A","A","B","B","B"], n = 2 | |
Output: 8 -- A -> B -> idle -> A -> B -> idle -> A -> B. | |
""" | |
from collections import Counter | |
def leastInterval(tasks, n): | |
""" | |
:type tasks: List[str] | |
:type n: int | |
:rtype: int | |
""" | |
taskCounts = Counter(tasks).values() | |
maxValue = max(taskCounts) | |
maxValueCount = list(taskCounts).count(maxValue) | |
base = maxValue * maxValueCount | |
base += (maxValue - 1) * (n - (maxValueCount - 1)) | |
return max(len(tasks), base) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment