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?

刚开始以为只有等级高的就比等级低的糖多,忽略此处,只针对相邻的的小孩。

此题思路:

先从左向右扫描,只要右边的大于左边的权值,且糖右边小于等于左边,右边值才需更新

再从右向左扫描,只要左边的大于右边的权值,且糖左边小于等于右边,左边值才需更新


 int candy(vector<int> &ratings) {
   
   /* 注释的代码是在不考虑相邻的情况
    int result = 1;
    int increment = 0;
    int next_value =1;
    //第一种方法先排序。理解错误
    sort(ratings.begin(),ratings.end());
    
    for(int i = 1;i<ratings.size();i++)
    {
        if(ratings.at(i-1)<ratings.at(i))
        {
            increment += 1;
            next_value += increment;
        }
      
        result += next_value;
    }
    return result;
    }
    */
    int result = 0 ;//刚开始未初始化一直通不过。报错
    int size = ratings.size();
    vector<int> candy(size,1);
    //观察从左到右的影响,右大的情况
    for(int i = 1;i < size;i++)
    {
        if(ratings[i-1] < ratings[i] && candy[i-1] >= candy[i] )
        {
            candy[i] = candy[i-1] + 1;
        }
        
      
    }
     //观察从右到左的影响,左大情况
    for(int j = size-1;j >= 1;j--)
    {
        if(ratings[j-1] > ratings[j] && candy[j-1] <= candy[j] )
        {
                candy[j-1] = candy[j]+1;
        }
    }
    
    for(int k = 0;k <size;k++)
    {
        result += candy[k];
    }
    
    return result;
    }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值