CF1918G.Permutation of Given

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You were given only one number, nn . It didn't seem interesting to you, so you wondered if it's possible to come up with an array of length nn consisting of non-zero integers, such that if each element of the array is replaced by the sum of its neighbors (the elements on the ends are replaced by their only neighbors), you obtain a permutation of the numbers in the original array.

输入格式

Each test case contains only one number, nn ( 2n1062 \leq n \leq 10^6 ).

输出格式

If a solution exists, output "YES" (without quotes), followed by an array aa ( 109ai109,ai0-10^9 \leq a_i \leq 10^9, a_i \neq 0 ) that satisfies the condition of the problem. If there are multiple possible answers, output any of them.

If there is no suitable array, output "NO" (without quotes).

The words "YES" and "NO" can be output in any case, for example, "YES", "Yes", "yEs", and so on.

输入输出样例

  • 输入#1

    4

    输出#1

    YES
    1 2 -2 -1
  • 输入#2

    5

    输出#2

    NO

说明/提示

In the first test, the array [ 1,2,2,11, 2, -2, -1 ] is suitable, because if each element is replaced by the sum of its neighbors, the resulting array is [ 2,1,1,22, -1, 1, -2 ], which is a permutation of the original array.

In the second test, it can be shown that there is no solution.

首页