CF1632B.Roof Construction

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

It has finally been decided to build a roof over the football field in School 179. Its construction will require placing nn consecutive vertical pillars. Furthermore, the headmaster wants the heights of all the pillars to form a permutation pp of integers from 00 to n1n - 1 , where pip_i is the height of the ii -th pillar from the left (1in)(1 \le i \le n) .

As the chief, you know that the cost of construction of consecutive pillars is equal to the maximum value of the bitwise XOR of heights of all pairs of adjacent pillars. In other words, the cost of construction is equal to max1in1pipi+1\max\limits_{1 \le i \le n - 1}{p_i \oplus p_{i + 1}} , where \oplus denotes the bitwise XOR operation.

Find any sequence of pillar heights pp of length nn with the smallest construction cost.

In this problem, a permutation is an array consisting of nn distinct integers from 00 to n1n - 1 in arbitrary order. For example, [2,3,1,0,4][2,3,1,0,4] is a permutation, but [1,0,1][1,0,1] is not a permutation ( 11 appears twice in the array) and [1,0,3][1,0,3] is also not a permutation ( n=3n=3 , but 33 is in the array).

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t1041 \le t \le 10^4 ). Description of the test cases follows.

The only line for each test case contains a single integer nn ( 2n21052 \le n \le 2 \cdot 10^5 ) — the number of pillars for the construction of the roof.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case print nn integers p1p_1 , p2p_2 , \ldots , pnp_n — the sequence of pillar heights with the smallest construction cost.

If there are multiple answers, print any of them.

输入输出样例

  • 输入#1

    4
    2
    3
    5
    10

    输出#1

    0 1
    2 0 1
    3 2 1 0 4
    4 6 3 2 0 8 9 1 7 5

说明/提示

For n=2n = 2 there are 22 sequences of pillar heights:

  • [0,1][0, 1] — cost of construction is 01=10 \oplus 1 = 1 .
  • [1,0][1, 0] — cost of construction is 10=11 \oplus 0 = 1 .

For n=3n = 3 there are 66 sequences of pillar heights:

  • [0,1,2][0, 1, 2] — cost of construction is max(01,12)=max(1,3)=3\max(0 \oplus 1, 1 \oplus 2) = \max(1, 3) = 3 .
  • [0,2,1][0, 2, 1] — cost of construction is max(02,21)=max(2,3)=3\max(0 \oplus 2, 2 \oplus 1) = \max(2, 3) = 3 .
  • [1,0,2][1, 0, 2] — cost of construction is max(10,02)=max(1,2)=2\max(1 \oplus 0, 0 \oplus 2) = \max(1, 2) = 2 .
  • [1,2,0][1, 2, 0] — cost of construction is max(12,20)=max(3,2)=3\max(1 \oplus 2, 2 \oplus 0) = \max(3, 2) = 3 .
  • [2,0,1][2, 0, 1] — cost of construction is max(20,01)=max(2,1)=2\max(2 \oplus 0, 0 \oplus 1) = \max(2, 1) = 2 .
  • [2,1,0][2, 1, 0] — cost of construction is max(21,10)=max(3,1)=3\max(2 \oplus 1, 1 \oplus 0) = \max(3, 1) = 3 .
首页