Problem Description
Given an integer array arr, remove a subarray (can be empty) from arr such that the remaining elements in arr are non-decreasing. Return the length of the shortest subarray to remove. A subarray is a contiguous subsequence of the array.
Key Insights
- The array needs to be transformed into a non-decreasing order by removing the shortest possible contiguous subarray.
- The problem can be approached using two pointers to find the longest prefix and suffix of the array that are already sorted.
- The idea is to determine the maximum length of the combined sorted prefix and suffix, and the minimum length of the subarray to remove can be calculated from this.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we can utilize two pointers to identify the longest non-decreasing prefix and suffix of the array. We will maintain a stack to help in identifying the valid segments of the array that can be left after removing the shortest subarray. By computing the lengths of these segments, we can determine the minimum length of the subarray that needs to be removed.