Problem Description
Given an integer n, return any beautiful array nums of length n. An array nums is beautiful if it is a permutation of the integers in the range [1, n] and for every 0 <= i < j < n, there is no index k with i < k < j where 2 * nums[k] == nums[i] + nums[j].
Key Insights
- A beautiful array must contain unique integers from 1 to n.
- The condition involving indices i, j, and k means the array cannot have certain arithmetic relationships between its elements.
- The problem can be solved using a divide-and-conquer approach by separating the numbers into odd and even groups.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To construct a beautiful array, we can use a recursive approach that generates two separate arrays: one containing odd numbers and the other containing even numbers. By combining these two arrays, we can ensure that the condition involving indices i, j, and k is satisfied. The algorithm effectively divides the problem into smaller subproblems until the base case is reached.