leetcode 135 Candy

本文深入探讨了Candy分配算法的实现,旨在确保每位儿童基于其评分获得的糖果数量不仅公平,而且达到最小总消耗。通过两次遍历,分别从前向后和从后向前比较儿童评分,动态调整糖果数量,确保高评分儿童比邻居获得更多糖果,同时维持最低糖果使用量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

135. 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?

Example 1:

Input: [1,0,2]
Output: 5
Explanation: You can allocate to the first, second and third child with 2, 1, 2 candies respectively.

Example 2:

Input: [1,2,2]
Output: 4
Explanation: You can allocate to the first, second and third child with 1, 2, 1 candies respectively.
             The third child gets 1 candy because it satisfies the above two conditions.

Solutions:

if __name__== "__main__":
    def candy(ratings):
        lenr = len(ratings)                //lenr为ratings的长度
        if lenr<=1: return lenr
        dp = [1 for _ in range(lenr)]      // 建立长为lenr,每个位置为1的数组dp
        for i in range(1, lenr):           //从前往后,从后往前遍历两次,取最大值
            if ratings[i] > ratings[i-1] :
                dp[i] = dp[i-1]+1
        for j in range(lenr-1, 0, -1):
            if ratings[j] < ratings[j-1]:
                dp[j-1] = max(dp[j-1], dp[j]+1)
        return sum( dp )
    print(candy([1,0,2]))

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值