首页 > 其他 > 详细

Candy

时间:2014-06-12 07:15:23      阅读:255      评论:0      收藏:0      [点我收藏+]

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?

左右各扫描一遍

首先是从左向右扫描,若为第一个孩子或者当前的rating小于等于前一个的rating,该孩子给1颗糖,否则,该孩子的糖数为前一名孩子的糖数量加1。

然后是从右向左扫描,若为最后一个孩子或者当前的rating小于等于后一个的rating,该孩子给1颗糖,否则,该孩子的糖数为后一名孩子的糖数量加1。

每一位小孩得到的糖的数量为两次遍历给的糖数中较大的那个,然后遍历每个孩子,累计糖的数量,即得到结果。

 1 public int candy(int[] ratings) {
 2         int result[] = new int[ratings.length];
 3         for(int i=0;i<ratings.length;i++){
 4             result[i] = (i==0||ratings[i]<=ratings[i-1])?1:result[i-1]+1;
 5         }
 6         for(int i=ratings.length-1;i>=0;i--){
 7             int a = (i==ratings.length-1||ratings[i]<=ratings[i+1])?1:result[i+1]+1;
 8             result[i] = result[i]>a?result[i]:a;
 9         }
10         int max = 0;
11         for(int i=0;i<ratings.length;i++){
12             max+=result[i];
13         }
14         return max;
15     }

bubuko.com,布布扣

看了看题解,发现递归版本有一种叫备忘录的做法,不懂,o(╯□╰)o,有时间研究研究

Candy,布布扣,bubuko.com

Candy

原文:http://www.cnblogs.com/apoptoxin/p/3782653.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!