zoukankan      html  css  js  c++  java
  • Leetcode: Candy

    There are N children standing in a line. Each child is assigned a rating value.
    
    You are giving candies to these children subjected to the following requirements:
    
    Each child must have at least one candy.
    Children with a higher rating get more candies than their neighbors.
    What is the minimum candies you must give?

    贪心法

    复杂度

    时间 O(N) 空间 O(N)

    思路

    典型的贪心法,如果一个孩子比另一个孩子的分高,我们只多给1块糖。我们可以先从左往右遍历,确保每个孩子根他左边的孩子相比,如果分高,则糖要多1个,如果分比左边低,就只给一颗。然后我们再从右往左遍历,确保每个孩子跟他右边的孩子相比,如果分高则糖至少多1个(这里至少多1个的意思是,我们要取当前孩子手里糖的数量,和其右边孩子糖的数量加1,两者的较大值)。

     1 public class Solution {
     2     public int candy(int[] ratings) {
     3         if(ratings.length <= 1){
     4             return ratings.length;
     5         }
     6         int[] candies = new int[ratings.length];
     7         candies[0] = 1;
     8         // 先从左往右分糖,分数较高的多拿一颗糖,分数较少的只拿一颗糖
     9         for(int i = 1; i < ratings.length; i++){
    10             if(ratings[i] > ratings[i - 1]){
    11                 candies[i] = candies[i - 1] + 1;
    12             } else {
    13                 candies[i] = 1;
    14             }
    15         }
    16         int sum = candies[candies.length - 1];
    17         // 再从右往左继续分糖,分数较高的确保比右边多一颗就行了
    18         for(int i = ratings.length - 2; i >= 0; i--){
    19             if(ratings[i] > ratings[i + 1]){
    20                 candies[i] = Math.max(candies[i + 1] + 1, candies[i]);
    21             }
    22             sum += candies[i];
    23         }
    24         return sum; 
    25     }
    26 }
  • 相关阅读:
    Pytorch——张量 Tensors
    Pytorch——cuda的使用
    神经网络训练模型的两种写法
    Pytorch——torch.nn.init 中实现的初始化函数
    线性回归的简洁实现
    Pytorch——net.parameters()参数获取
    Tensor和NumPy相互转换
    Codeforces Round #600 (Div. 2) A、B
    2020-2021 ACM-ICPC, Asia Seoul Regional Contest G. Mobile Robot
    大组合数模板
  • 原文地址:https://www.cnblogs.com/EdwardLiu/p/3983218.html
Copyright © 2011-2022 走看看