首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

LeetCode标题 Jump Game II

2012-08-31 
LeetCode题目 Jump Game II题目:Given an array of non-negative integers, you are initially positioned

LeetCode题目 Jump Game II
题目:

Given an array of non-negative integers, you are initially positioned at the first index of the array.

Each element in the array represents your maximum jump length at that position.

Your goal is to reach the last index in the minimum number of jumps.

For example:
Given array A = [2,3,1,1,4]

The minimum number of jumps to reach the last index is 2. (Jump 1 step from index 0 to 1, then 3 steps to the last index.)

解析:利用贪心算法。从每次可跳的情况中选出可跳最大步数的一种,再从此处继续贪心;

代码:

class Solution {public:    int jump(int A[], int n) {        // Start typing your C/C++ solution below        // DO NOT write int main() function              if (n==1){     return 0;   }int i=0;int jumps=0;int cur_max=0;while(i<n){cur_max=i+A[i];if (cur_max>0){jumps++;}if (cur_max>=n-1){return jumps;}int tempmax=0;for (int j=i+1;j<=cur_max;j++){  if (j+A[j]>tempmax)  {     tempmax=j+A[j];    i=j;   }}}return jumps;    }};

热点排行