Problem Description
Given an integer array nums
and two integers lower
and upper
, return the number of range sums that lie in [lower, upper]
inclusive. Range sum S(i, j)
is defined as the sum of the elements in nums
between indices i
and j
inclusive, where i <= j
.
Key Insights
- The problem requires counting the number of contiguous subarrays whose sum falls within a specified range.
- A prefix sum approach can be utilized to efficiently calculate the sum of any subarray.
- Utilizing a modified merge sort or a balanced binary search structure can help maintain the counts of prefix sums and facilitate range queries.
Space and Time Complexity
Time Complexity: O(n log n)
Space Complexity: O(n)
Solution
To solve this problem, we can use the prefix sum technique combined with a modified merge sort. First, we compute the prefix sums for the array, which allows us to calculate the sum of any subarray in constant time. The main idea is to count how many prefix sums fall within the range [current_sum - upper, current_sum - lower]
using a sorted list of previously seen prefix sums. We can efficiently keep this list sorted and perform binary search to count the valid ranges. This approach not only keeps track of the prefix sums but also counts how many of them lie within the given bounds.