#P1353D. Constructing the Array
Constructing the Array
No submission language available for this problem.
Description
You are given an array of length consisting of zeros. You perform actions with this array: during the -th action, the following sequence of operations appears:
- Choose the maximum by length subarray (continuous subsegment) consisting only of zeros, among all such segments choose the leftmost one;
- Let this segment be . If is odd (not divisible by ) then assign (set) (where is the number of the current action), otherwise (if is even) assign (set) .
Consider the array of length (initially ). Then it changes as follows:
- Firstly, we choose the segment and assign , so becomes ;
- then we choose the segment and assign , so becomes ;
- then we choose the segment and assign , so becomes ;
- then we choose the segment and assign , so becomes ;
- and at last we choose the segment and assign , so becomes .
Your task is to find the array of length after performing all actions. Note that the answer exists and unique.
You have to answer independent test cases.
The first line of the input contains one integer () — the number of test cases. Then test cases follow.
The only line of the test case contains one integer () — the length of .
It is guaranteed that the sum of over all test cases does not exceed ().
For each test case, print the answer — the array of length after performing actions described in the problem statement. Note that the answer exists and unique.
Input
The first line of the input contains one integer () — the number of test cases. Then test cases follow.
The only line of the test case contains one integer () — the length of .
It is guaranteed that the sum of over all test cases does not exceed ().
Output
For each test case, print the answer — the array of length after performing actions described in the problem statement. Note that the answer exists and unique.