week_8_ Jump Game

Description

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

算法思路大致如下:

① 申请一个bool数组mark[],用于标记该下标是否可达。对于可达,其定义是通过若干次跳动可以到达末位下标。

② 末位下标本身必然可达,故初始化mark[size-1]为True。

③ 声明变量index,用于对当前下标最邻近的可达下标进行记录更新,并初始化为index = size - 1。

④ 对数组,由后往前进行遍历,并判断i + nums[i],即当前可以到达的最大下标,与最邻近可达下标的相对关系:若大于或等于,则置mark[i] = true,且更新index = i;若小于,置mark[i] = false。

⑤ 返回mark[0]。

整个算法的实现如下:

class Solution {
public:
	bool canJump(vector<int>& nums) {
		int size = nums.size();
		// 初始化
		mark[size - 1] = true;
		int index = size - 1;
		// 由后往前回溯
		for (int i = size - 2; i >= 0; i--) {
			if (i + nums[i] >= index) {
				mark[i] = true;
				// 更新最近的可达下标
				index = i;
			}
			else
				mark[i] = false;
		}
		return mark[0];
	}
private:
	bool mark[50000];
};

在LeetCode提交结果如下:



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值