Verifying Kingdom

题意翻译

给定正整数 $n$,交互库有 $n$ 个叶子的"满二叉树"(所有点恰有 $0/2$ 个儿子),也即有 $2n-1$ 个点。 每个叶子有 $1-n$ 的编号,至多询问 $10n$ 次,每次询问 $a_1,a_2,a_3$,交互器告诉你 $\text{LCA}(a_1,a_2)$,$\text{LCA}(a_2,a_3)$,$\text{LCA}(a_3,a_1)$ 中哪个最深。 求这棵树,但不需求出编号(给出的树与答案在有根意义下同构即可)。 $n\le 10^3$。

题目描述

This is an interactive problem. The judge has a hidden rooted full binary tree with $ n $ leaves. A full binary tree is one where every node has either $ 0 $ or $ 2 $ children. The nodes with $ 0 $ children are called the leaves of the tree. Since this is a full binary tree, there are exactly $ 2n-1 $ nodes in the tree. The leaves of the judge's tree has labels from $ 1 $ to $ n $ . You would like to reconstruct a tree that is isomorphic to the judge's tree. To do this, you can ask some questions. A question consists of printing the label of three distinct leaves $ a_{1},a_{2},a_{3} $ . Let the depth of a node be the shortest distance from the node to the root of the tree. Let $ LCA(a,b) $ denote the node with maximum depth that is a common ancestor of the nodes $ a $ and $ b $ . Consider $ X=LCA(a_{1},a_{2}),Y=LCA(a_{2},a_{3}),Z=LCA(a_{3},a_{1}) $ . The judge will tell you which one of $ X,Y,Z $ has the maximum depth. Note, this pair is uniquely determined since the tree is a binary tree; there can't be any ties. More specifically, if $ X $ (or $ Y $ , $ Z $ respectively) maximizes the depth, the judge will respond with the string "X" (or "Y", "Z" respectively). You may only ask at most $ 10·n $ questions.

输入输出格式

输入格式


The first line of input will contain a single integer $ n $ ( $ 3<=n<=1000 $ ) — the number of leaves in the tree.

输出格式


To print the final answer, print out the string "-1" on its own line. Then, the next line should contain $ 2n-1 $ integers. The $ i $ -th integer should be the parent of the $ i $ -th node, or -1, if it is the root. Your answer will be judged correct if your output is isomorphic to the judge's tree. In particular, the labels of the leaves do not need to be labeled from $ 1 $ to $ n $ . Here, isomorphic means that there exists a permutation $ π $ such that node $ i $ is the parent of node $ j $ in the judge tree if and only node $ π(i) $ is the parent of node $ π(j) $ in your tree. Interaction To ask a question, print out three distinct integers $ a_{1},a_{2},a_{3} $ . These integers should be between $ 1 $ and $ n $ , inclusive. The judge will respond with a single character, either "X", "Y", "Z". If the string is "X" (or "Y", "Z" respectively), that means the pair $ (a_{1},a_{2}) $ (or $ (a_{2},a_{3}) $ , $ (a_{3},a_{1}) $ respectively) has the deepest $ LCA $ among the three pairs. You may only ask a question at most $ 10·n $ times, otherwise, you will get Wrong Answer. When you are ready to answer, print out a single integer "-1" on its own line. The next line should contain $ 2n-1 $ integers. The $ i $ -th integer should be the parent of the $ i $ -th node, or -1, if it is the root. Do not forget to flush the final answer as well. Printing the answer does not count as asking a question. You will get Wrong Answer verdict if - Your question or answers are not in the format described in this statement. - You ask strictly more than $ 10·n $ questions. - Your question contains duplicate indices. - Your final answer is not isomorphic to the judge tree. You will get Idleness Limit Exceeded if you don't print anything or if you forget to flush the output, including for the final answer (more info about flushing output below). To flush you can use (just after printing an integer and end-of-line): - fflush(stdout) in C++; - System.out.flush() in Java; - stdout.flush() in Python; - flush(output) in Pascal; - See the documentation for other languages. If at any moment your program reads -1 as an answer, it should immediately exit normally (for example, by calling exit(0)). You will get Wrong Answer in this case, it means that you made more queries than allowed, or made an invalid query. If you ignore this, you can get other verdicts since your program will continue to read from a closed stream. Hacking To hack someone, use the following format `<br></br>n<br></br>p_1 p_2 ... p_{2n-1}<br></br>`This denotes a tree where the parent of the $ i $ -th node is $ p_{i} $ ( $ p_{i}=-1 $ or $ n&lt;p_{i}<=2n-1 $ ). If $ p_{i} $ is equal to -1, then node $ i $ is the root. This input must describe a valid full rooted binary tree. Of course, contestant programs will not be able to see this input.

输入输出样例

输入样例 #1

5
X
Z
Y
Y
X<span class="tex-font-style-tt"></span>

输出样例 #1

1 4 2
1 2 4
2 4 1
2 3 5
2 4 3
-1
-1 1 1 2 2 3 3 6 6

说明

For the first sample, the judge has the hidden tree: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF772E/550dc6e0659ebed108890308ec1e94d047e35b62.png) Here is a more readable format of the interaction: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF772E/9ddbd13f110ece8cef510a2c9dbb4b4a4e303a41.png) The last line can also be 8 6 9 8 9 7 -1 6 7.