CF1129E.Legendary Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is an interactive problem.

A legendary tree rests deep in the forest. Legend has it that individuals who realize this tree would eternally become a Legendary Grandmaster.

To help you determine the tree, Mikaela the Goddess has revealed to you that the tree contains nn vertices, enumerated from 11 through nn . She also allows you to ask her some questions as follows. For each question, you should tell Mikaela some two disjoint non-empty sets of vertices SS and TT , along with any vertex vv that you like. Then, Mikaela will count and give you the number of pairs of vertices (s,t)(s, t) where sSs \in S and tTt \in T such that the simple path from ss to tt contains vv .

Mikaela the Goddess is busy and will be available to answer at most 1111111\,111 questions.

This is your only chance. Your task is to determine the tree and report its edges.

输入格式

The first line contains an integer nn ( 2n5002 \leq n \leq 500 ) — the number of vertices in the tree.

输出格式

When program has realized the tree and is ready to report the edges, print "ANSWER" in a separate line. Make sure that all letters are capitalized.

Then, print n1n-1 lines, each containing two space-separated integers, denoting the vertices that are the endpoints of a certain edge. Each edge should be reported exactly once. Your program should then immediately terminate.

Interaction

For each question that you wish to ask, interact as follows.

  1. First, print the size of SS in its own line. In the following line, print S|S| space-separated distinct integers, denoting the vertices in SS .
  2. Similarly, print the size of TT in its own line. In the following line, print T|T| space-separated distinct integers, denoting the vertices in TT .
  3. Then, in the final line, print vv — the vertex that you choose for this question.
  4. Read Mikaela's answer from input.

Be reminded that SS and TT must be disjoint and non-empty.

After printing a query do not forget to output end of line and flush the output. Otherwise you will get Idleness limit exceeded. To do this, use:

  • fflush(stdout) or cout.flush() in C++;
  • System.out.flush() in Java;
  • flush(output) in Pascal;
  • stdout.flush() in Python;
  • see documentation for other languages.

If your program asks too many questions, asks an invalid question or does not correctly follow the interaction guideline above, it may receive an arbitrary verdict. Otherwise, your program will receive the Wrong Answer verdict if it reports an incorrect tree.

Note that the tree is fixed beforehand and does not depend on your queries.

Hacks

Hacks should be formatted as follows.

The first line should contain a single integer nn ( 2n5002 \leq n \leq 500 ) — the number of vertices in the tree.

The following n1n-1 lines should each contain two space-separated integers uu and vv , denoting the existence of an undirected edge (u,v)(u, v) ( 1u,vn1 \leq u, v \leq n ).

输入输出样例

  • 输入#1

    5
    5
    

    输出#1

    3
    1 2 3
    2
    4 5
    2
    ANSWER
    1 2
    2 3
    3 4
    2 5
    

说明/提示

In the sample, the tree is as follows.

n=5n = 5 is given to the program. The program then asks Mikaela a question where S={1,2,3}S = \{1, 2, 3\} , T={4,5}T = \{4, 5\} , and v=2v = 2 , to which she replies with 55 (the pairs (s,t)(s, t) are (1,4)(1, 4) , (1,5)(1, 5) , (2,4)(2, 4) , (2,5)(2, 5) , and (3,5)(3, 5) ).

首页