Longest Turbulent Subarray
A subarray A[i], A[i+1], ..., A[j]
of A
is said to be turbulent if and only if:
For
i <= k < j
,A[k] > A[k+1]
whenk
is odd, andA[k] < A[k+1]
whenk
is even;OR, for
i <= k < j
,A[k] > A[k+1]
whenk
is even, andA[k] < A[k+1]
whenk
is odd.
That is, the subarray is turbulent if the comparison sign flips between each adjacent pair of elements in the subarray.
Return the length of a maximum size turbulent subarray of A.
Example 1:
Example 2:
Example 3:
Note:
1 <= A.length <= 40000
0 <= A[i] <= 10^9
分析:
若弯曲则up由down来,down由up来,这样其实一直保存了最大曲线的长度且递增,同时也保存了当前现状。
loop里每次res也更新得到最大。
Last updated