C++實現LeetCode(55.跳躍遊戲)

[LeetCode] 55. 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.

這道題說的是有一個非負整數的數組,每個數字表示在當前位置的最大跳力(這裡的跳力指的是在當前位置為基礎上能到達的最遠位置),求判斷能不能到達最後一個位置,開始博主以為是必須剛好到達最後一個位置,超過瞭不算,其實是理解題意有誤,因為每個位置上的數字表示的是最大的跳力而不是像玩大富翁一樣搖骰子搖出幾一定要走幾。這裡可以用動態規劃 Dynamic Programming 來解,維護一個一維數組 dp,其中 dp[i] 表示達到i位置時剩餘的跳力,若到達某個位置時跳力為負瞭,說明無法到達該位置。接下來難點就是推導狀態轉移方程啦,想想啊,到達當前位置的剩餘跳力跟什麼有關呢,其實是跟上一個位置的剩餘跳力(dp 值)和上一個位置新的跳力(nums 數組中的值)有關,這裡新的跳力就是原數組中每個位置的數字,因為其代表瞭以當前位置為起點能到達的最遠位置。所以當前位置的剩餘跳力(dp 值)和當前位置新的跳力中的較大那個數決定瞭當前能到的最遠距離,而下一個位置的剩餘跳力(dp 值)就等於當前的這個較大值減去1,因為需要花一個跳力到達下一個位置,所以就有狀態轉移方程瞭:dp[i] = max(dp[i – 1], nums[i – 1]) – 1,如果當某一個時刻 dp 數組的值為負瞭,說明無法抵達當前位置,則直接返回 false,最後循環結束後直接返回 true  即可,參見代碼如下:

解法一:

class Solution {
public:
    bool canJump(vector<int>& nums) {
        vector<int> dp(nums.size(), 0);
        for (int i = 1; i < nums.size(); ++i) {
            dp[i] = max(dp[i - 1], nums[i - 1]) - 1;
            if (dp[i] < 0) return false;
        }
        return true;
    }
};

其實這題最好的解法不是 DP,而是貪婪算法 Greedy Algorithm,因為這裡並不是很關心每一個位置上的剩餘步數,而隻希望知道能否到達末尾,也就是說我們隻對最遠能到達的位置感興趣,所以維護一個變量 reach,表示最遠能到達的位置,初始化為0。遍歷數組中每一個數字,如果當前坐標大於 reach 或者 reach 已經抵達最後一個位置則跳出循環,否則就更新 reach 的值為其和 i + nums[i] 中的較大值,其中 i + nums[i] 表示當前位置能到達的最大位置,參見代碼如下:

解法二:

class Solution {
public:
    bool canJump(vector<int>& nums) {
        int n = nums.size(), reach = 0;
        for (int i = 0; i < n; ++i) {
            if (i > reach || reach >= n - 1) break;
            reach = max(reach, i + nums[i]);
        }
        return reach >= n - 1;
    }
};

到此這篇關於C++實現LeetCode(55.跳躍遊戲)的文章就介紹到這瞭,更多相關C++實現跳躍遊戲內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: