Problem Description
You are given an array of integers nums
(0-indexed) and an integer k
. The score of a subarray (i, j)
is defined as min(nums[i], nums[i+1], ..., nums[j]) * (j - i + 1)
. A good subarray is a subarray where i <= k <= j
. Return the maximum possible score of a good subarray.
Key Insights
- A subarray must include the index
k
. - The score is determined by the minimum value in the subarray multiplied by its length.
- To maximize the score, we need to efficiently find the minimum value over varying lengths of subarrays that include
k
. - The problem can be approached using techniques such as a monotonic stack to efficiently find boundaries for valid subarrays.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve this problem, we can use a monotonic stack to find the boundaries of the good subarrays that include the index k
. The idea is to calculate the "left" and "right" boundaries for the subarrays that can be formed with k
as the center. The minimum value in the subarray is determined by the value at index k
and the lengths of the good subarrays are calculated based on these boundaries. By iterating through the array and using the stack to maintain the minimums, we can efficiently compute the maximum score.