[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.)

» Solve this problem

[解题思路]
二指针问题,最大覆盖区间。
从左往右扫描,维护一个覆盖区间,每扫过一个元素,就重新计算覆盖区间的边界。比如,开始时区间[start, end], 遍历A数组的过程中,不断计算A[i]+i最大值(即从i坐标开始最大的覆盖坐标),并设置这个最大覆盖坐标为新的end边界。而新的start边界则为原end+1。不断循环,直到end> n.

[Code]

1:    int jump(int A[], int n) {  
2: // Start typing your C/C++ solution below
3: // DO NOT write int main() function
4: int start = 0;
5: int end = 0;
6: int count =0;
7: if(n == 1) return 0;
8: while(end < n)
9: {
10: int max = 0;
11: count++;
12: for(int i =start; i<= end ; i++ )
13: {
14: if(A[i]+i >= n-1)
15: {
16: return count;
17: }
18: if(A[i]+ i > max)
19: max = A[i]+i;
20: }
21: start = end+1;
22: end = max;
23: }
24: }

[注意]
Line7,当n=1的时候,需要特殊处理一下。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值