Problem Description
You are given an integer array nums
and two integers minK
and maxK
. A fixed-bound subarray of nums
is a subarray that satisfies the following conditions:
- The minimum value in the subarray is equal to
minK
. - The maximum value in the subarray is equal to
maxK
.
Return the number of fixed-bound subarrays.
Key Insights
- A subarray must contain both
minK
andmaxK
to be considered a fixed-bound subarray. - The presence of values outside the range
[minK, maxK]
will break potential subarrays. - Efficiently counting valid subarrays can be achieved using a sliding window approach.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we can utilize a sliding window technique:
- Traverse the array while maintaining two pointers to represent the bounds of the current subarray.
- Track the last positions of
minK
andmaxK
within the current valid window. - For each valid subarray ending at the current index, count all subarrays that can be formed starting from valid positions of
minK
andmaxK
. - Reset the pointers when a value outside the range
[minK, maxK]
is encountered.
This approach ensures we only pass through the array once, making it efficient.