码迷,mamicode.com
首页 > 其他好文 > 详细

Problem Candy

时间:2014-07-07 16:22:28      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   strong   for   

Problem Description:

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?

Solution:

 1     public int candy(int[] ratings) {
 2          int[] candies = new int[ratings.length];
 3         for (int i = 1; i < ratings.length ; i++) {
 4             if (ratings[i]  > ratings[i-1]) {
 5                 candies[i] = candies[i-1] + 1;
 6             }
 7         }
 8 
 9         for (int i = ratings.length - 2; i >= 0; i--) {
10             if (ratings[i] > ratings[i+1] && candies[i] <= candies[i+1]) {
11                 candies[i] = candies[i+1] + 1;
12             }
13         }
14 
15         int sum = 0;
16         for (int i = 0; i < candies.length; i++) {
17             sum += candies[i];
18         }
19 
20         return sum + candies.length;
21     }

 

Problem Candy,布布扣,bubuko.com

Problem Candy

标签:des   style   blog   color   strong   for   

原文地址:http://www.cnblogs.com/liew/p/3815085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!