题库练习 Grid Reconstruction
← 上一题 下一题 →

A15958 | Grid Reconstruction

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Consider a $2 \times n$ grid, where $n$ is an even integer. You may place the integers $1, 2, \ldots, 2n$ on the grid, using each integer exactly once.

A path is a sequence of cells achieved by starting at $(1, 1)$ , then repeatedly walking either downwards or to the right, and stopping when $(2, n)$ is reached. The path should not extend beyond the grid.

The cost of a path is the alternating sum of the numbers written on the cells in a path. That is, let the numbers written on the cells be $a_1, a_2, \ldots, a_k$ (in the order that it is visited), the cost of the path is $a_1 - a_2 + a_3 - a_4 + \ldots = \sum_{i=1}^k a_i \cdot (-1)^{i+1}$ .

Construct a way to place the integers $1, 2, \ldots, 2n$ on the grid, such that the minimum cost over all paths from $(1, 1)$ to $(2, n)$ is maximized. If there are multiple such grids that result in the maximum value, output any of them.

输入格式

The first line contains a single integer $t$ ( $1 \leq t \leq 1000$ ) — the number of test cases. The description of test cases follows.

The first and the only line of each test case contains a single integer $n$ ( $2 \leq n \leq 10^5$ , $n$ is even) — the number of the columns in the grid.

It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .

输出格式

For each test case, output $2$ lines, each containing $n$ integers — the desired grid. If there are multiple solutions, output any of them.

输入输出样例

输入 #1
3
2
4
6
输出 #1
3 2
1 4
8 2 6 4
1 5 3 7
11 5 9 1 7 3
6 10 2 8 4 12
C++ 编辑器
输入
输出