美文网首页计算机
Leetcode - Candy

Leetcode - Candy

作者: Richardo92 | 来源:发表于2016-09-29 11:32 被阅读1次

    My code:

    public class Solution {
        public int candy(int[] ratings) {
            int[] candy = new int[ratings.length];
            candy[0] = 1;
            for (int i = 1; i < candy.length; i++) {
                if (ratings[i] > ratings[i - 1]) {
                    candy[i] = candy[i - 1] + 1;
                }
                else {
                    candy[i] = 1;
                }
            }
            
            int total = candy[candy.length - 1];
            for (int i = candy.length - 2; i >= 0; i--) {
                if (ratings[i] > ratings[i + 1] && candy[i] <= candy[i + 1]) {
                    candy[i] = candy[i + 1] + 1;
                }
                total += candy[i];
            }
            
            return total;
        }
    }
    

    reference:
    https://discuss.leetcode.com/topic/5243/a-simple-solution/3

    Greedy.
    直接看的答案。到现在也还不能很理解,为什么这么做就是最优的。

    如果把孩子换成task, 对应的输入就是每个task的优先级。
    糖就是时间片。一个糖就是一个时间片。
    问你,最少要多少时间片,可以保证平衡。

    Anyway, Good luck, Richardo! -- 09/28/2016

    相关文章

      网友评论

        本文标题:Leetcode - Candy

        本文链接:https://www.haomeiwen.com/subject/onikyttx.html