3011. Find if Array Can Be Sorted
Difficulty: Medium
Topics: Array, Bit Manipulation, Sorting
You are given a 0-indexed array of positive integers nums.
In one operation, you can swap any two adjacent elements if they have the same number of set bits1. You are allowed to do this operation any number of times (including zero).
Return true if you can sort the array, else return false.
Example 1:
Input: nums = [8,4,2,30,15]
Output: true
Explanation: Let's look at the binary representation of every element. The numbers 2, 4, and 8 have one set bit each with binary representation "10", "100", and "1000" respectively. The numbers 15 and 30 have four set bits each with binary representation "1111" and "11110".
We can sort the array using 4 operations:
- Swap nums[0] with nums[1]. This operation is valid because 8 and 4 have one set bit each. The array becomes [4,8,2,30,15].
- Swap nums[1] with nums[2]. This operation is valid because 8 and 2 have one set bit each. The array becomes [4,2,8,30,15].
- Swap nums[0] with nums[1]. This operation is valid because 4 and 2 have one set bit each. The array becomes [2,4,8,30,15].
- Swap nums[3] with nums[4]. This operation is valid because 30 and 15 have four set bits each. The array becomes [2,4,8,15,30].
- The array has become sorted, hence we return true.
- Note that there may be other sequences of operations which also sort the array.
Example 2:
Input: nums = [1,2,3,4,5]
Output: true
Explanation: The array is already sorted, hence we return true.
Example 3:
Input: nums = [3,16,8,4,2]
Output: false
Explanation: It can be shown that it is not possible to sort the input array using any number of operations.
Example 4:
Input: nums = [75,34,30]
Output: false
Explanation: It can be shown that it is not possible to sort the input array using any number of operations.
Constraints:
1 <= nums.length <= 1001 <= nums[i] <= 28
Hint:
- Split the array into segments. Each segment contains consecutive elements with the same number of set bits.
- From left to right, the previous segment’s largest element should be smaller than the current segment’s smallest element.
Solution:
We need to determine if the array can be sorted by only swapping adjacent elements that have the same number of set bits in their binary representation. Here’s the plan:
Solution Steps:
Key Observation: The operation allows us to swap adjacent elements only if they have the same number of set bits. This restricts swapping across elements with different numbers of set bits.
Plan:
- Group elements by the number of set bits in their binary representation.
- Sort each group individually, since within a group, elements can be rearranged by swaps.
- After sorting each group, merge the sorted groups back together.
- Check if this merged array is sorted. If it is, then sorting the array using the allowed operations is possible.
Steps:
- Count the set bits in each number and group numbers with the same set bit count.
- Sort each group individually.
- Reconstruct the array from these sorted groups and verify if the result is sorted.
Let's implement this solution in PHP: a star on GitHub or sharing the post on your favorite social networks 😍.
Set Bit A set bit refers to a bit in the binary representation of a number that has a value of
1. ↩
SOCIAL SHARE CARD GENERATOR