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

Leetcode 55

时间:2018-10-08 17:18:56      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:int   for   tor   leetcode   max   i++   size   col   cto   

//很巧妙的贪心算法 reach = max(reach,nums[i] + i); 
class
Solution { public: bool canJump(vector<int>& nums) { int n = nums.size(); int reach = 0; for(int i=0;i < n;i++){ if(i > reach || reach >= n-1) break; reach = max(reach,nums[i] + i); } return reach >= n-1; } };

 

Leetcode 55

标签:int   for   tor   leetcode   max   i++   size   col   cto   

原文地址:https://www.cnblogs.com/cunyusup/p/9755326.html

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