LeetCode: Candy [135]

來源:互聯網
上載者:User

標籤:leetcode   演算法   面試   

【題目】

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?


【題意】

    有N個孩子排成一排,每個孩子有一個分值,按照下面的兩條規則給孩子分餅乾
    1. 每個孩子至少有一塊餅乾
    2. 分值高的孩子比他相鄰孩子拿的餅乾要多
    問,最少給多少塊餅乾就可以了?


【思路】

        不多給,也不少給,分值高的比相鄰的多拿一塊即可
        
        首先給每個孩子發一塊餅乾
        然後,每個孩子跟他左邊的孩子比,從左至右檢查每個孩子,如果這個孩子的分值比他左邊孩子的要高,我們再給他些餅乾,讓他比他左邊的孩子多一塊餅乾。
        然後,每個孩子跟他右邊的孩子比,從右至左檢查每個孩子,如果這個孩子的分值比他右邊孩子的要高,而他的餅乾數沒右邊孩子的多,我們要給他些餅乾,讓他比他右邊的孩子多一塊餅乾。

    


【代碼】
class Solution {public:    int candy(vector<int> &ratings) {                int sum=0;        int size=ratings.size();        vector<int> candy(size, 1);                //從左至右檢查每個孩子的左鄰居        for(int i=1; i<size; i++){            if(ratings[i]>ratings[i-1])                candy[i]=candy[i-1]+1;        }        //從右至左檢查每個孩子的右鄰居        for(int i=size-2; i>=0; i--){            if(ratings[i]>ratings[i+1] && candy[i]<=candy[i+1])                candy[i]=candy[i+1]+1;        }                //計算餅乾數        for(int i=0; i<size; i++)            sum+=candy[i];                    return sum;    }};


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.