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 1:

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].

思考过程&解题思路:一开始没什么好的思路,借鉴了别人的思路,受了一点启发,最后自己完成。先把出现次数最多的字母排好,其它字母往里插入。最后有两种情况:插入之后仍有空缺,则返回值是(n + 1) * (k - 1) + j。其中k是出现次数最多的字母的出现次数,j是出现次数为k的字母个数;都插满之后仍然有字母剩余,那么剩余字母总可以无缝插进去,这时候返回值是tasks.length。

结果代码:
public int leastInterval(char[] tasks, int n) {
        int[] alphabet = new int[26];//int[n]的值表示第n + 1个字母在tasks里出现的次数
        int len = tasks.length;
        for (int i = 0;i < len;i++)
            alphabet[tasks[i] - 'A']++;
        Arrays.sort(alphabet);
        int i = 1,max = alphabet[25];//max是出现次数最大值
        while (alphabet[25 - i] == alphabet[25]) i++;//看看有几个最大值,这会影响结果
        return Math.max((n + 1) * (max - 1) + i,len);
    }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值