A11372 | Hashing Trees
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Sasha is taking part in a programming competition. In one of the problems she should check if some rooted trees are isomorphic or not. She has never seen this problem before, but, being an experienced participant, she guessed that she should match trees to some sequences and then compare these sequences instead of trees. Sasha wants to match each tree with a sequence $a_{0},a_{1},...,a_{h}$ , where $h$ is the height of the tree, and $a_{i}$ equals to the number of vertices that are at distance of $i$ edges from root.
Unfortunately, this time Sasha's intuition was wrong, and there could be several trees matching the same sequence. To show it, you need to write a program that, given the sequence $a_{i}$ , builds two non-isomorphic rooted trees that match that sequence, or determines that there is only one such tree.
Two rooted trees are isomorphic, if you can reenumerate the vertices of the first one in such a way, that the index of the root becomes equal the index of the root of the second tree, and these two trees become equal.
The height of a rooted tree is the maximum number of edges on a path from the root to any other vertex.
Unfortunately, this time Sasha's intuition was wrong, and there could be several trees matching the same sequence. To show it, you need to write a program that, given the sequence $a_{i}$ , builds two non-isomorphic rooted trees that match that sequence, or determines that there is only one such tree.
Two rooted trees are isomorphic, if you can reenumerate the vertices of the first one in such a way, that the index of the root becomes equal the index of the root of the second tree, and these two trees become equal.
The height of a rooted tree is the maximum number of edges on a path from the root to any other vertex.
输入格式
The first line contains a single integer $h$ ( $2<=h<=10^{5}$ ) — the height of the tree.
The second line contains $h+1$ integers — the sequence $a_{0},a_{1},...,a_{h}$ ( $1<=a_{i}<=2·10^{5}$ ). The sum of all $a_{i}$ does not exceed $2·10^{5}$ . It is guaranteed that there is at least one tree matching this sequence.
The second line contains $h+1$ integers — the sequence $a_{0},a_{1},...,a_{h}$ ( $1<=a_{i}<=2·10^{5}$ ). The sum of all $a_{i}$ does not exceed $2·10^{5}$ . It is guaranteed that there is at least one tree matching this sequence.
输出格式
If there is only one tree matching this sequence, print "perfect".
Otherwise print "ambiguous" in the first line. In the second and in the third line print descriptions of two trees in the following format: in one line print  integers, the $k$ -th of them should be the parent of vertex $k$ or be equal to zero, if the $k$ -th vertex is the root.
These treese should be non-isomorphic and should match the given sequence.
Otherwise print "ambiguous" in the first line. In the second and in the third line print descriptions of two trees in the following format: in one line print  integers, the $k$ -th of them should be the parent of vertex $k$ or be equal to zero, if the $k$ -th vertex is the root.
These treese should be non-isomorphic and should match the given sequence.
输入输出样例
输入 #1
2 1 1 1
输出 #1
perfect
输入 #2
2 1 2 2
输出 #2
ambiguous 0 1 1 3 3 0 1 1 3 2
The only tree in the first example and the two printed trees from the second example are shown on the picture:


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted