Problem Description
You are given a 0-indexed array of positive integers nums
and a positive integer limit
. In one operation, you can choose any two indices i
and j
and swap nums[i]
and nums[j]
if |nums[i] - nums[j]| <= limit
. Return the lexicographically smallest array that can be obtained by performing the operation any number of times.
Key Insights
- Swapping elements is limited by the difference defined by
limit
. - Elements that can be swapped together form connected components based on their values.
- Each connected component can be sorted independently to achieve the lexicographically smallest order.
- The result is the combination of individual sorted components.
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting of connected components. Space Complexity: O(n) - for storing the indices of connected components.
Solution
To solve the problem, we can use the Union-Find (Disjoint Set Union) data structure to group indices of nums
that can be swapped together based on the defined limit. After identifying the connected components, we sort each component and replace the original indices with the sorted values. This ensures the smallest possible arrangement for each component, leading to the overall lexicographically smallest array.