All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0001_0100.s0045_jump_game_ii.Solution.c Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
// #Medium #Top_100_Liked_Questions #Array #Dynamic_Programming #Greedy
// #Algorithm_II_Day_13_Dynamic_Programming #Dynamic_Programming_I_Day_4
// #Big_O_Time_O(n)_Space_O(1) #2024_10_30_Time_0_ms_(100.00%)_Space_8.7_MB_(93.45%)

#include 

int jump(int* nums, int numsSize) {
    int length = 0;
    int maxLength = 0;
    int minJump = 0;

    for (int i = 0; i < numsSize - 1; ++i) {
        length--;
        maxLength--;
        if (nums[i] > maxLength) {
            maxLength = nums[i];
        }

        if (length <= 0) {
            length = maxLength;
            minJump++;
        }

        if (length >= numsSize - i - 1) {
            return minJump;
        }
    }

    return minJump;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy