You are given an integer array nums of length n.
An index i (0 < i < n - 1) is special if nums[i] > nums[i - 1] and nums[i] > nums[i + 1].
You may perform operations where you choose any index i and increase nums[i] by 1.
Your goal is to:
Return an integer denoting the minimum total number of operations required.
Example 1:
Input: nums = [1,2,2]
Output: 1
Explanation:
nums = [1, 2, 2].nums[1] by 1, array becomes [1, 3, 2].[1, 3, 2] has 1 special index, which is the maximum achievable.Example 2:
Input: nums = [2,1,1,3]
Output: 2
Explanation:
nums = [2, 1, 1, 3].[2, 3, 1, 3].[2, 3, 1, 3] has 1 special index, which is the maximum achievable. Thus, the answer is 2.Example 3:
Input: nums = [5,2,1,4,3]
Output: 4
Explanation:
nums = [5, 2, 1, 4, 3].[5, 6, 1, 4, 3].[5, 6, 1, 4, 3] has 2 special indices, which is the maximum achievable. Thus, the answer is 4.Constraints:
3 <= n <= 1051 <= nums[i] <= 109Loading editor...
[1,2,2]