A14362 | Compression and Expansion
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $a_1 \,.\, a_2 \,.\, a_3 \,.\, \,\cdots\, \,.\,a_k$ and can be one of two types:
1. Add an item $a_1 \,.\, a_2 \,.\, a_3 \,.\, \cdots \,.\, a_k \,.\, 1$ (starting a list of a deeper level), or
2. Add an item $a_1 \,.\, a_2 \,.\, a_3 \,.\, \cdots \,.\, (a_k + 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.
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 $a_1 \,.\, a_2 \,.\, a_3 \,.\, \,\cdots\, \,.\,a_k$ and can be one of two types:
1. Add an item $a_1 \,.\, a_2 \,.\, a_3 \,.\, \cdots \,.\, a_k \,.\, 1$ (starting a list of a deeper level), or
2. Add an item $a_1 \,.\, a_2 \,.\, a_3 \,.\, \cdots \,.\, (a_k + 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.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10$ ). Description of the test cases follows.
The first line of each test case contains a single integer $n$ ( $1 \le n \le 10^3$ ), which is the number of lines in the list.
Each of the next $n$ lines contains a single integer $a_i$ ( $1 \le a_i \le 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 $n$ across all test cases does not exceed $10^3$ .
The first line of each test case contains a single integer $n$ ( $1 \le n \le 10^3$ ), which is the number of lines in the list.
Each of the next $n$ lines contains a single integer $a_i$ ( $1 \le a_i \le 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 $n$ across all test cases does not exceed $10^3$ .
输出格式
For each test case output $n$ lines which represent a valid nested list, which could become the data provided to you by William.
If there are multiple answers, print any.
If there are multiple answers, print any.
输入输出样例
输入 #1
2 4 1 1 2 3 9 1 1 1 2 2 1 2 1 2
输出 #1
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
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 $1$ .
2. Insert item $2$ by using the insertion operation of the second type after item $1$ .
3. Insert item $1.1$ by using the insertion operation of the first type after item $1$ .
4. Insert item $1.2$ by using the insertion operation of the second type after item $1.1$ .
5. Insert item $1.1.1$ by using the insertion operation of the first type after item $1.1$ .
6. Insert item $1.1.2$ by using the insertion operation of the second type after item $1.1.1$ .
7. Insert item $1.2.1$ by using the insertion operation of the first type after item $1.2$ .
8. Insert item $2.1$ by using the insertion operation of the first type after item $2$ .
9. Insert item $2.2$ by using the insertion operation of the second type after item $2.1$ .
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 $1$ .
2. Insert item $2$ by using the insertion operation of the second type after item $1$ .
3. Insert item $1.1$ by using the insertion operation of the first type after item $1$ .
4. Insert item $1.2$ by using the insertion operation of the second type after item $1.1$ .
5. Insert item $1.1.1$ by using the insertion operation of the first type after item $1.1$ .
6. Insert item $1.1.2$ by using the insertion operation of the second type after item $1.1.1$ .
7. Insert item $1.2.1$ by using the insertion operation of the first type after item $1.2$ .
8. Insert item $2.1$ by using the insertion operation of the first type after item $2$ .
9. Insert item $2.2$ by using the insertion operation of the second type after item $2.1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted