Problem Description
Given an integer array nums
, your goal is to make all elements in nums
equal. To complete one operation, follow these steps:
- Find the largest value in
nums
. Let its index bei
(0-indexed) and its value belargest
. If there are multiple elements with the largest value, pick the smallesti
. - Find the next largest value in
nums
strictly smaller thanlargest
. Let its value benextLargest
. - Reduce
nums[i]
tonextLargest
.
Return the number of operations to make all elements in nums
equal.
Key Insights
- The problem requires reducing the largest element to the next largest, and this needs to be done iteratively until all elements are equal.
- We can take advantage of sorting to identify the unique values in the array and count how many operations it takes to reduce each element to the smallest value.
- The number of operations needed to reduce all elements can be derived from the count of occurrences of each unique value.
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting the array. Space Complexity: O(n) - for storing the count of elements.
Solution
To solve the problem, we can follow these steps:
- Sort the array to easily identify the unique elements.
- Count how many times each unique element occurs.
- Calculate the number of operations needed to reduce each unique element to the next smaller unique element.
- The total number of operations is the sum of the counts of all elements above the smallest unique element.