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

leetcode-Jump game II

时间:2014-10-22 21:55:42      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   on   

Greedy

 1 class Solution
 3 public:
 4     int jump(int A[], int n) {
 5         int start = 0;
 6         int end = 0;
 7         int count = 0;
 8         if (n == 1) return 0;
 9         while (end < n)
10         {//贪心策略:每次都走到最远的地方。下一轮再把上一轮的end+1作为新的start。直到能覆盖A[n-1]为止。
11             int max = 0;
12             count++;
13             for (int i = start; i <= end; i++)
14             {
15                 if (A[i] + i >= n - 1)
16                     return count;
17                 if (A[i] + i > max)
18                     max = A[i] + i;//其实就是计算下一轮循环所能到达的最远的地方。
19             }
20             start = end + 1;//下一轮的start以这一轮的end再加1为起点。
21             end = max;//以这一轮算出的能到达的最远的地方作为下一轮循环的终点。
22         }
23     }
24 };

 

leetcode-Jump game II

标签:style   blog   color   io   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/forcheryl/p/4044331.html

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