Problem Description
You are given an integer array nums
. Each element in nums
is 1, 2 or 3. In each operation, you can remove an element from nums
. Return the minimum number of operations to make nums
non-decreasing.
Key Insights
- The problem requires us to rearrange the elements of the array into a non-decreasing order by removing the minimum number of elements.
- Since the elements can only be 1, 2, or 3, we can use a frequency count to determine how many of each element we have.
- The challenge is to find the longest subsequence of 1s, 2s, and 3s that can remain in the array while still being non-decreasing.
- We can utilize dynamic programming to maintain counts of valid subsequences as we traverse the array.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we will traverse the nums
array while maintaining counts of the longest valid subsequences that can be formed with the numbers 1, 2, and 3. We will use three counters:
count1
: counts the number of 1s in the valid subsequence.count2
: counts the number of 2s that can follow the 1s.count3
: counts the number of 3s that can follow the 2s.
At the end, the minimum number of operations required will be the total number of elements minus the length of the longest valid subsequence.