975. Odd Even Jump

You are given an integer arrayA. From some starting index, you can make a series of jumps. The (1st, 3rd, 5th, ...) jumps in the series are calledodd numbered jumps, and the (2nd, 4th, 6th, ...) jumps in the series are calledeven numbered jumps.

You may from indexi jump forward to indexj (withi < j) in the following way:

  • During odd numbered jumps (ie. jumps 1, 3, 5, ...), you jump to the index j such that A[i] <= A[j]and A[j]is the smallest possible value. If there are multiple such indexes j, you can only jump to the smallest such index j.

  • During even numbered jumps (ie. jumps 2, 4, 6, ...), you jump to the index j such that A[i] >= A[j]and A[j]is the largest possible value. If there are multiple such indexes j, you can only jump to the smallest such index j.

  • (It may be the case that for some index i,there are no legal jumps.)

A starting index is_good_if, starting from that index, you can reach the end of the array (indexA.length - 1) by jumping some number of times (possibly 0 or more than once.)

Return the number of good starting indexes.

Example 1:

Input: 
[10,13,12,14,15]
Output: 
2
Explanation: 

From starting index i = 0, we can jump to i = 2 (since A[2] is the smallest among A[1], A[2], A[3], A[4] that is greater or equal to A[0]), then we can't jump any more.
From starting index i = 1 and i = 2, we can jump to i = 3, then we can't jump any more.
From starting index i = 3, we can jump to i = 4, so we've reached the end.
From starting index i = 4, we've reached the end already.
In total, there are 2 different starting indexes (i = 3, i = 4) where we can reach the end with some number of jumps.

Example 2:

Example 3:

Note:

  1. 1 <= A.length <= 20000

  2. 0 <= A[i] < 100000

Thoughts:

  1. DP: dp[i][0]: even jump at i; dp[i][1]: odd jump at i T:O(n^2)

  2. Sort + Stack to eliminate double for loop: keep stack monotonic decreasing as frogs jump to index monotonic increasing.

Code DP:

Code DP with stack optimization: T: O(nlogn)

Last updated

Was this helpful?