0621-task-scheduler¶
Try it on leetcode
Description¶
You are given an array of CPU tasks, each labeled with a letter from A to Z, and a number n. Each CPU interval can be idle or allow the completion of one task. Tasks can be completed in any order, but there's a constraint: there has to be a gap of at least n intervals between two tasks with the same label.
Return the minimum number of CPU intervals required to complete all tasks.
Example 1:
Input: tasks = ["A","A","A","B","B","B"], n = 2
Output: 8
Explanation: A possible sequence is: A -> B -> idle -> A -> B -> idle -> A -> B.
After completing task A, you must wait two intervals before doing A again. The same applies to task B. In the 3rd interval, neither A nor B can be done, so you idle. By the 4th interval, you can do A again as 2 intervals have passed.
Example 2:
Input: tasks = ["A","C","A","B","D","B"], n = 1
Output: 6
Explanation: A possible sequence is: A -> B -> C -> D -> A -> B.
With a cooling interval of 1, you can repeat a task after just one other task.
Example 3:
Input: tasks = ["A","A","A", "B","B","B"], n = 3
Output: 10
Explanation: A possible sequence is: A -> B -> idle -> idle -> A -> B -> idle -> idle -> A -> B.
There are only two types of tasks, A and B, which need to be separated by 3 intervals. This leads to idling twice between repetitions of these tasks.
Constraints:
1 <= tasks.length <= 104tasks[i]is an uppercase English letter.0 <= n <= 100
Solution(Python)¶
class Solution:
def leastInterval(self, tasks: List[str], n: int) -> int:
# Step 1: Count the frequency of each task
frequencies = [0] * 26
for task in tasks:
frequencies[ord(task) - ord('A')] += 1
# Step 2: Identify max frequency
max_freq = max(frequencies)
# Step 3: Count how many tasks have the maximum frequency
max_freq_count = frequencies.count(max_freq)
# Step 4: Apply the greedy interval formula
minimum_intervals = (max_freq - 1) * (n + 1) + max_freq_count
# Step 5: Return upper bound against the total number of tasks
return max(len(tasks), minimum_intervals)