Problem Description
You are given a 0-indexed array nums
consisting of positive integers. There are two types of operations that you can apply on the array any number of times:
- Choose two elements with equal values and delete them from the array.
- Choose three elements with equal values and delete them from the array.
Return the minimum number of operations required to make the array empty, or -1 if it is not possible.
Key Insights
- Each element's count must be either zero or a multiple of two or three to be removable.
- To minimize operations, prioritize removing groups of three when possible, as they reduce the count faster.
- If there are leftover items after maximizing removals of threes, pairs can be used, but if there are unremovable items, return -1.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
The solution involves counting the occurrences of each number using a hash table (dictionary). For each unique number, we calculate how many operations are needed to remove all occurrences based on the count:
- If the count is a multiple of three, remove as many groups of three as possible.
- If there are leftover items that cannot form a pair or a group of three, it's impossible to empty the array, so return -1.
- Sum the total operations required for all unique numbers.