Problem Description
You are given a 0-indexed integer array strength
, where strength[i]
denotes the strength of the i-th
wizard. For a contiguous group of wizards, the total strength is defined as the product of the strength of the weakest wizard in the group and the total of all the individual strengths of the wizards in the group. Return the sum of the total strengths of all contiguous groups of wizards, modulo 10^9 + 7
.
Key Insights
- The strength of a contiguous subarray can be computed based on its minimum element and its total sum.
- Using a monotonic stack can help efficiently identify the range of contiguous subarrays for which each wizard is the weakest.
- Prefix sums can be utilized to quickly compute the total strength of subarrays.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we will use the following approach:
- Monotonic Stack: We will maintain a stack to keep track of the indices of the wizards in a way that allows us to efficiently find the nearest smaller strength on both the left and the right.
- Prefix Sums: By maintaining a prefix sum array, we can quickly calculate the sum of any contiguous subarray.
- For each wizard, we will determine how many contiguous subarrays it is the minimum strength for, and calculate the contribution of that wizard to the total strength using the prefix sums.
The algorithm involves iterating through the list of strengths, using the monotonic stack to find the range where each wizard is the minimum, and calculating the contribution to the total strength accordingly.