C. Compression and Expansion-Deltix Round, Spring 2021 (open for everyone, rated, Div. 1 + Div. 2)

C. Compression and Expansion

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

William is a huge fan of planning ahead. That is why he starts his morning routine by creating a nested list of upcoming errands.

A valid nested list is any list which can be created from a list with one item "1" by applying some operations. Each operation inserts a new item into the list, on a new line, just after one of existing items a1.a2.a3.⋯.aka1.a2.a3.⋯.ak and can be one of two types:

  1. Add an item a1.a2.a3.⋯.ak.1a1.a2.a3.⋯.ak.1 (starting a list of a deeper level), or
  2. Add an item a1.a2.a3.⋯.(ak+1)a1.a2.a3.⋯.(ak+1) (continuing the current level).

Operation can only be applied if the list does not contain two identical items afterwards. And also, if we consider every item as a sequence of numbers, then the sequence of items should always remain increasing in lexicographical order. Examples of valid and invalid lists that are shown in the picture can found in the "Notes" section.

When William decided to save a Word document with the list of his errands he accidentally hit a completely different keyboard shortcut from the "Ctrl-S" he wanted to hit. It's not known exactly what shortcut he pressed but after triggering it all items in the list were replaced by a single number: the last number originally written in the item number.

William wants you to help him restore a fitting original nested list.

Input

Each test contains multiple test cases. The first line contains the number of test cases tt (1≤t≤101≤t≤10). Description of the test cases follows.

The first line of each test case contains a single integer nn (1≤n≤1031≤n≤103), which is the number of lines in the list.

Each of the next nn lines contains a single integer aiai (1≤ai≤n1≤ai≤n), which is what remains of William's nested list.

It is guaranteed that in each test case at least one fitting list exists.

It is guaranteed that the sum of values nn across all test cases does not exceed 103103.

Output

For each test case output nn lines which represent a valid nested list, which could become the data provided to you by William.

If there are multiple answers, print any.

Example

input

Copy

2
4
1
1
2
3
9
1
1
1
2
2
1
2
1
2

output

Copy

1
1.1
1.2
1.3
1
1.1
1.1.1
1.1.2
1.2
1.2.1
2
2.1
2.2

Note

In the second example test case one example of a fitting list is:

1

1.1

1.1.1

1.1.2

1.2

1.2.1

2

2.1

2.2

This list can be produced by using the sequence of operations shown below:

  1. Original list with a single item 11.
  2. Insert item 22 by using the insertion operation of the second type after item 11.
  3. Insert item 1.11.1 by using the insertion operation of the first type after item 11.
  4. Insert item 1.21.2 by using the insertion operation of the second type after item 1.11.1.
  5. Insert item 1.1.11.1.1 by using the insertion operation of the first type after item 1.11.1.
  6. Insert item 1.1.21.1.2 by using the insertion operation of the second type after item 1.1.11.1.1.
  7. Insert item 1.2.11.2.1 by using the insertion operation of the first type after item 1.21.2.
  8. Insert item 2.12.1 by using the insertion operation of the first type after item 22.
  9. Insert item 2.22.2 by using the insertion operation of the second type after item 2.12.1.

---------------------------------------------------------------------------------------------------------------------------------突破点在第一张图。

第一张图解释了样例二

1                       1

1.1                    1

1.1.1                 1

1.1.2                  2

1.2                   2

1.2.1                 1                                   

2                           2                 注意,根据第一张图可以直观理解,1.2.2也是对的

2.1                      1

2.2                      2

所以,如果当前是1,就相当于开了个子任务,添上1就行,如果是2结尾,那么只需要找到末尾开始第一个1就足够了,x找x-1就行

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qinsanma and Code

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值