首页 > 代码库 > [LeetCode] Jump Game II 贪心
[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.)
Hide Tags
Array Greedy 这题是前面一题的变种,其实用的是贪心算法,不过数据设置了时间限制,所以需要提交效率,最好就是一次O(n)时间。
为了提高时间需要做一个思考,如下面位置,是否存在 i-th 需要跳的最少次数少于i-1 th 位置,如
... | i-1 | i |
... | 3 | 2 |
如果i 是从i-2 或之前跳到的,那么<i> = <i-1>.
可以知道必定有<i> >= <i-1>。
利用这个性质可以加快速度。
算法逻辑:
- 创建等长的字符串a,a[i] 表示到i-th 的最少跳数,有a[0]等于0,结果就是a[n-1]。
- 创建最大已知位置索引maxIdx,表示在i-th 位置时,已经最远确定的位置索引,初始化为1,即指向未知的位置最小的。
- 遍历数组。
- 如果遍历位置加上跳跃长度大于等于maxIdx,那么更新数组a 到最大索引maxIdx
- 如果maxIdx ==n 跳出
- 返回a[n-1].
这样遍历的时间其实只有n 次,时间O(n),空间也是O(n).改进地方就是空间改O(1)。
1 #include <iostream> 2 using namespace std; 3 4 class Solution { 5 public: 6 int jump(int A[], int n) { 7 int *a = new int [n]; 8 for(int i=1;i<n;i++) 9 a[i]=INT_MAX;10 a[0]=0;11 int maxidx = 1;12 for(int i=0;i<n;i++){13 while(maxidx<=i+A[i]&&maxidx<n){14 // for(int kk=0;kk<n;kk++) cout<<a[kk]<<" ";15 // cout<<endl;16 a[maxidx++] = a[i]+1;17 }18 }19 int ret = a[n-1];20 delete []a;21 return ret;22 }23 };24 25 int main()26 {27 int a[]={2,3,1,1,4};28 Solution sol;29 cout<<sol.jump(a,sizeof(a)/sizeof(int))<<endl;30 return 0;31 }
discuss 中有空间O(1)的实现,逻辑是一样的,就贴上来吧。
https://oj.leetcode.com/discuss/422/is-there-better-solution-for-jump-game-ii
1 class Solution { 2 public: 3 int jump(int A[], int n) { 4 int ret = 0; 5 int last = 0; 6 int curr = 0; 7 for (int i = 0; i < n; ++i) { 8 if (i > last) { 9 last = curr;10 ++ret;11 }12 curr = max(curr, i+A[i]);13 }14 15 return ret;16 }17 };
[LeetCode] Jump Game II 贪心
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。