随笔- 509  文章- 0  评论- 151  阅读- 22万 

Jump Game

2014.2.26 04:21

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.

Determine if you are able to reach the last index.

For example:
A = [2,3,1,1,4], return true.

A = [3,2,1,0,4], return false.

Solution:

  If you're standing at position i, you can jump at least 0, and at most a[i] steps forward.

  If you're able to reach position i, you must also be able to reach every position before i. Think about why.

  Thanks to that conclusion, we only need to record the farthest position we can reach. When the array is scanned for one pass, we check if the farthest position we can reach is n. This algorithm is linear and online.

  Time complexity is O(n). Space complexity is O(1).

Accepted code:

复制代码
 1 // 2CE, 1TLE, 1AC, simple online algorithm with O(n) time.
 2 class Solution {
 3 public:
 4     bool canJump(int A[], int n) {
 5         if (A == nullptr || n == 0) {
 6             return false;
 7         } else if (n == 1) {
 8             return true;
 9         }
10         
11         int ll, rr;
12         
13         rr = 0;
14         for (ll = 0; ll < n; ++ll) {
15             if (rr < ll) {
16                 // this position is unreachable
17                 // if this position is unreachable, so are all those behind it
18                 return false;
19             } else {
20                 rr = mymax(rr, ll + A[ll]);
21             }
22         }
23         
24         return true;
25     }
26 private:
27     int mymax(const int x, const int y) {
28         return (x > y ? x : y);
29     }
30 };
复制代码

 

 posted on   zhuli19901106  阅读(329)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示