博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode OJ] Candy
阅读量:5325 次
发布时间:2019-06-14

本文共 1255 字,大约阅读时间需要 4 分钟。

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?

1 class Solution { 2 public: 3     int candy(vector
&ratings) { 4 vector
candy_number(ratings.size(), 1); 5 //不用迭代器,改用下标索引实现,这样代码看起来更加简洁 6 for(int i=1; i
ratings[i-1]) //eg:输入[4 2 3 4 1],最少的分法是[2 1 2 3 1],分发9个糖果10 candy_number[i] = (candy_number[i] > candy_number[i-1]+1) ? candy_number[i] : candy_number[i-1]+1;11 }12 13 14 for(int i=ratings.size()-2; i>=0; --i) 15 {16 //保障当左边的rating比右边的高时,则左边分得的糖果比右边多17 if( ratings[i] > ratings[i+1])18 candy_number[i] = (candy_number[i] > candy_number[i+1]+1) ? candy_number[i] : candy_number[i+1]+1;19 }20 21 int total=0;22 for(int i=0; i!=ratings.size(); ++i)23 total = total + candy_number[i];24 25 return total;26 }27 };

 

转载于:https://www.cnblogs.com/Marrybe/p/3778840.html

你可能感兴趣的文章
ASP.NET中Request.ApplicationPath、Request.FilePath、Request.Path、.Request.MapPath
查看>>
通过Python、BeautifulSoup爬取Gitee热门开源项目
查看>>
正则表达式的用法
查看>>
线程安全问题
查看>>
集合的内置方法
查看>>
IOS Layer的使用
查看>>
Android SurfaceView实战 带你玩转flabby bird (上)
查看>>
Android中使用Handler造成内存泄露的分析和解决
查看>>
SSM集成activiti6.0错误集锦(一)
查看>>
个人作业
查看>>
下拉刷新
查看>>
linux的子进程调用exec( )系列函数
查看>>
MSChart的研究
查看>>
C# 索引器
查看>>
MySQLdb & pymsql
查看>>
zju 2744 回文字符 hdu 1544
查看>>
XmlDocument
查看>>
delphi 内嵌汇编例子
查看>>
SQL server 2012 安装SQL2012出现报错: 启用 Windows 功能 NetFx3 时出错
查看>>
【luogu P2298 Mzc和男家丁的游戏】 题解
查看>>