Back to course home
0% completed
Vote For New Content
Beautiful Array (medium)
Problem Statement
Given a positive integer N
, construct a beautiful array of size N
containing the number [1, N]
.
An array is beautiful if it follows the conditions below.
- If for any three indices
i
,j,
k
(withi < j < k
),A[j] * 2
is not equal toA[i] + A[k].
Examples
Example 1
- Input:
4
- Expected Output:
[2, 1, 4, 3]
- Justification: In this array, no combination of
i
,j
,k
(wherei < j < k
) exists such that2 * A[j] = A[i] + A[k]
.
Example 2
- Input:
3
- Expected Output:
[1, 3, 2]
- Justification: Similar to example 1, this array also satisfies the condition for a smaller size.
Example 3
- Input:
8
- Expected Output:
[1, 5, 3, 7, 2, 6, 4, 8]
(or any other permutation that satisfies the condition) - Justification: In this array, for every
i, j, k
(wherei < j < k
),2 * A[j]
is never equal toA[i] + A[k]
. This output ensures that all integers from 1 to 8 are used, and the condition is met for all possible triplets.
Constraints:
1 <= n <= 1000
Try it yourself
Try solving this question here:
Python3
Python3
. . . .
.....
.....
.....
Like the course? Get enrolled and start learning!
On this page
Problem Statement
Examples
Try it yourself