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?

[解题思路]

two pass scan, one pass from left to right, next pass from right to left

when find increment sequence, set candy by k, then increment k

something need to attention, the requirement of this problem is that only children with a higher rating need to get more

candies than their neighors, but if two child has the same rating, we do not need to give more candies

the time complexity is O(n), the space complexity is also O(n)

 1 public class Solution {
 2     public int candy(int[] ratings) {
 3         int N = ratings.length;
 4         if(N == 0){
 5             return N;
 6         }
 7         int[] candy = new int[N];
 8         int sum = N;
 9         for(int i = 0, k = 1; i < N; i++){
10             if(i - 1 >= 0 && ratings[i] > ratings[i - 1]){
11                 candy[i] = Math.max(k ++, candy[i]);
12             } else {
13                 k = 1;
14             }
15         }
16         
17         for(int i = N - 1, k = 1; i >= 0; i--){
18             if(i + 1 < N && ratings[i] > ratings[i + 1]){
19                 candy[i] = Math.max(k ++, candy[i]);
20             } else {
21                 k = 1;
22             }
23         }
24         
25         for(int i = 0; i < N; i++){
26             sum += candy[i];
27         }
28         return sum;
29     }
30 }

 

转载于:https://www.cnblogs.com/feiling/p/3350011.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值