CF1343B.Balanced Array

传统题 时间 2000 ms 内存 256 MiB 3 尝试 0 已通过 0 标签

Balanced Array

You are given a positive integer nn, it is guaranteed that nn is even (i.e. divisible by 22).

You want to construct the array aa of length nn such that:

  • The first n2\frac{n}{2} elements of aa are even (divisible by 22);
  • the second n2\frac{n}{2} elements of aa are odd (not divisible by 22);
  • all elements of aa are distinct and positive;
  • the sum of the first half equals to the sum of the second half ($um\limits_{i=1}^{\frac{n}{2}} a_i = um\limits_{i=\frac{n}{2} + 1}^{n} a_i$).

If there are multiple answers, you can print any. It is not guaranteed that the answer exists.

You have to answer tt independent test cases.

Input

The first line of the input contains one integer tt (1t1041 \le t \le 10^4) — the number of test cases. Then tt test cases follow.

The only line of the test case contains one integer nn (2n21052 \le n \le 2 \cdot 10^5) — the length of the array. It is guaranteed that that nn is even (i.e. divisible by 22).

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 (umn2105um n \le 2 \cdot 10^5).

Output

For each test case, print the answer — "NO" (without quotes), if there is no suitable answer for the given test case or "YES" in the first line and any suitable array a1,a2,,ana_1, a_2, \dots, a_n (1ai1091 \le a_i \le 10^9) satisfying conditions from the problem statement on the second line.

Samples

5
2
4
6
8
10
NO
YES
2 4 1 5
NO
YES
2 4 6 8 1 3 5 11
NO

在线编程 IDE

建议全屏模式获得最佳体验