[坐标型] M LintC Jump Game II
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.
Your goal is to reach the last index in the minimum number of jumps.
Method
/*
dp[i] = min Jump Cnt
dp[i] = (dp[j] != 0)min(dp[j : j < i] + 1 if(A[j] + j >= i))
*/