CF772E.Verifying Kingdom

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

This is an interactive problem.

The judge has a hidden rooted full binary tree with nn leaves. A full binary tree is one where every node has either 00 or 22 children. The nodes with 00 children are called the leaves of the tree. Since this is a full binary tree, there are exactly 2n12n-1 nodes in the tree. The leaves of the judge's tree has labels from 11 to nn . 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 a1,a2,a3a_{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)LCA(a,b) denote the node with maximum depth that is a common ancestor of the nodes aa and bb .

Consider X=LCA(a1,a2),Y=LCA(a2,a3),Z=LCA(a3,a1)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,ZX,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 XX (or YY , ZZ respectively) maximizes the depth, the judge will respond with the string "X" (or "Y", "Z" respectively).

You may only ask at most 10n10·n questions.

输入格式

The first line of input will contain a single integer nn ( 3<=n<=10003<=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 2n12n-1 integers. The ii -th integer should be the parent of the ii -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 11 to nn . Here, isomorphic means that there exists a permutation ππ such that node ii is the parent of node jj in the judge tree if and only node π(i)π(i) is the parent of node π(j)π(j) in your tree.

Interaction

To ask a question, print out three distinct integers a1,a2,a3a_{1},a_{2},a_{3} . These integers should be between 11 and nn , 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 (a1,a2)(a_{1},a_{2}) (or (a2,a3)(a_{2},a_{3}) , (a3,a1)(a_{3},a_{1}) respectively) has the deepest LCALCA among the three pairs.

You may only ask a question at most 10n10·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 2n12n-1 integers. The ii -th integer should be the parent of the ii -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 10n10·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 ii -th node is pip_{i} ( pi=1p_{i}=-1 or n<p_{i}<=2n-1 ). If pip_{i} is equal to -1, then node ii 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:

Here is a more readable format of the interaction:

The last line can also be 8 6 9 8 9 7 -1 6 7.

首页