Problem Description
You are given a 0-indexed integer array nums. Rearrange the values of nums according to the following rules:
- Sort the values at odd indices of nums in non-increasing order.
- Sort the values at even indices of nums in non-decreasing order.
Return the array formed after rearranging the values of nums.
Key Insights
- Values at odd indices must be sorted in non-increasing order.
- Values at even indices must be sorted in non-decreasing order.
- The rearrangement of values occurs independently for even and odd indices.
- The final output array will contain the rearranged values based on the above sorting rules.
Space and Time Complexity
Time Complexity: O(n log n), where n is the length of the input array (due to the sorting operations). Space Complexity: O(n), for storing the sorted values.
Solution
To solve this problem, we will:
- Extract the values at odd indices and sort them in non-increasing order.
- Extract the values at even indices and sort them in non-decreasing order.
- Reconstruct the original array by placing the sorted values back into their respective indices.
We will use two lists to hold the sorted values for even and odd indices, and then combine them to form the final result.