Beautiful Arrangement II
Description
Given two integers n
and k
, you need to construct a list which contains n
different positive integers ranging from 1
to n
and obeys the following requirement:
Suppose this list is [a1, a2, a3, ... , an], then the list [|a1 - a2|, |a2 - a3|, |a3 - a4|, ... , |an-1 - an|] has exactly k
distinct integers.
If there are multiple answers, print any of them.
Example 1:
Example 2:
Note:
The
n
andk
are in the range 1 <= k < n <= .
Solutions
My solution
Idea: place k
numbers in an alternating way: [1, n, 2, n-1, 3, n-2, ...]
, so there are k - 1
distinct absolute differences. Then place the remaining numbers in increasing or decreasing order. That is, the last distinct absolute difference is 1
.
A better solution
Idea: put first k + 1
numbers in the order [1, k+1, 2, k, 3, ...]
, which forms k distinct distances [k, k-1, ..., 1]
. Let's say this is the first part. Then the second part is formed by putting the remaining numbers in increasing order. Note the distance between the last element of the first part and first element of the second part is in [k, k-1, ..., 1]
. And adding the second part will not produce a new distance.
Reference: https://leetcode.com/problems/beautiful-arrangement-ii/discuss/106957/C++-concise-code-O(n)
Last updated