LeetCode:621. Task Scheduler(任务规划问题)

     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.

Example:

Input: tasks = ["A","A","A","B","B","B"], n = 2
Output: 8
Explanation: A -> B -> idle -> A -> B -> idle -> A -> B.
Note:
  1. The number of tasks is in the range [1, 10000].
  2. The integer n is in the range [0, 100].

方法1:

class Solution {
    public int leastInterval(char[] tasks, int n) {
       int[] map = new int[26];
        for(char c : tasks){
            map[c-'A']++;
        }        
        Arrays.sort(map);       
        int maxHeight = map[25] - 1;
        int maxSlots = maxHeight * n;       
        for(int i = 24; i >= 0 && map[i] != 0; i--){
            maxSlots -= Math.min(maxHeight, map[i]);
        }        
        return Math.max(tasks.length + maxSlots, tasks.length);        
    }
}

时间复杂度:O(n.logn)

空间复杂度:O(n)


源码github地址:https://github.com/zhangyu345293721/leetcode

猜你喜欢

转载自blog.csdn.net/zy345293721/article/details/85221280