Leetcode之Jump Game

题目:

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.

Example 1:

Input: [2,3,1,1,4]
Output: true
Explanation: Jump 1 step from index 0 to 1, then 3 steps to the last index.

Example 2:

Input: [3,2,1,0,4]
Output: false
Explanation: You will always arrive at index 3 no matter what. Its maximum
             jump length is 0, which makes it impossible to reach the last index.

代码:

1、vector:

class Solution {
public:
    bool canJump(vector<int>& nums) {
        int n = nums.size();
	if (n <= 1)return true;
	vector<bool> visit(n, false);
	visit[0] = true;

	for (int i = 1; i < n; i++) {
		for (int j = 0; j < i; j++) {
			if (visit[j] && nums[j] >= i - j) {
				visit[i] = true;
			}
		}
	}
	return visit[n - 1];
    }
};

2、动态数组

class Solution {
public:
    bool canJump(vector<int>& nums) {
        	int n = nums.size();
	if (n <= 1)return true;

	bool * visit = new bool[n];
	for (int i = 0; i < n; i++) {
		visit[i] = false;
	}
	visit[0] = true;

	for (int i = 1; i < n; i++) {
		for (int j = 0; j < i; j++) {
			if (visit[j] && nums[j] >= i - j) {
				visit[i] = true;
			}
		}
	}

	bool res = visit[n - 1];
	delete[]visit;
	return res;
    }
};

猜你喜欢

转载自blog.csdn.net/qq_35455503/article/details/88377689