30daychallenge (25) | 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..Đứng tại một vị trí x sẽ nhảy được <=nums[x]. Giả sử đang đứng ở vị trí 3 trong dãy [2,3,0,1,4]. 3+1 >=4, vì thế từ 3 luôn nhảy được tới 4, vì thế từ giờ ta coi luôn đích sẽ là 3. Đứng ở vị trí 2, 2+0<3, ta không làm gì cả. Vị trí 1, 1+3>=3, cập nhật lại 1, vị trí 0, 0+2>=1, cập nhật lại 0. Nếu cuối cùng x = 0 tức kết quả bài toán sẽ là true.
Cảm ơn.
Nhận xét
Đăng nhận xét