Problem Description
You are given an integer array nums
. In one move, you can choose one element of nums
and change it to any value. Return the minimum difference between the largest and smallest value of nums
after performing at most three moves.
Key Insights
- You can perform up to three moves to change elements in the array.
- The goal is to minimize the difference between the maximum and minimum values of the array after the moves.
- Sorting the array helps identify potential candidates for the maximum and minimum values after modifications.
- The minimum difference can be achieved by either increasing the smallest values or decreasing the largest values.
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting the array.
Space Complexity: O(1) - only a constant amount of extra space is used.
Solution
To solve this problem, we can follow these steps:
- Sort the given array
nums
. - Calculate the potential minimum differences by considering the smallest and largest elements that can be adjusted after up to three moves.
- The possible scenarios involve changing up to three smallest elements or three largest elements, and we need to compute the differences accordingly.
- The minimum of these differences will be our answer.