Problem Description
Given an array of integers nums
and an integer limit
, return the size of the longest non-empty subarray such that the absolute difference between any two elements of this subarray is less than or equal to limit
.
Key Insights
- We need to find the longest contiguous subarray where the maximum absolute difference between any two elements is bounded by
limit
. - A sliding window approach is appropriate, allowing us to efficiently check the conditions for the subarray.
- We can use two deques (or a sorted data structure) to maintain the minimum and maximum values within the current window.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the nums
array. Each element is processed at most twice.
Space Complexity: O(n), for the space used by deques to maintain the minimum and maximum values.
Solution
We can use a sliding window approach with two deques to maintain the current minimum and maximum values in the window. As we expand the window to include new elements, we will check if the absolute difference between the maximum and minimum exceeds the limit
. If it does, we will shrink the window from the left until the condition is satisfied again. At each valid window, we update the maximum length found.