Problem Description
Given an array of integers nums
, return the maximum min-product of any non-empty subarray of nums
. The min-product of an array is defined as the minimum value in the array multiplied by the array's sum. Since the answer may be large, return it modulo 10^9 + 7.
Key Insights
- The min-product is maximized when the minimum value of the subarray is as large as possible.
- To compute the sum of subarrays efficiently, a prefix sum approach can be utilized.
- A monotonic stack can help in determining the range of subarrays for each element efficiently, allowing for the identification of the minimum value and its corresponding subarray sum.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
The solution involves using a monotonic stack to find the range of subarrays for each element, which acts as the minimum within that subarray. For each element nums[i]
, we determine the left and right boundaries where it remains the minimum. Using these boundaries, we can compute the sum of the subarray defined by these boundaries. Finally, we calculate the min-product for each possible minimum and keep track of the maximum found.