CF1713D.Tournament Countdown

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is an interactive problem.

There was a tournament consisting of 2n2^n contestants. The 11 -st contestant competed with the 22 -nd, the 33 -rd competed with the 44 -th, and so on. After that, the winner of the first match competed with the winner of second match, etc. The tournament ended when there was only one contestant left, who was declared the winner of the tournament. Such a tournament scheme is known as the single-elimination tournament.

You don't know the results, but you want to find the winner of the tournament. In one query, you select two integers aa and bb , which are the indices of two contestants. The jury will return 11 if aa won more matches than bb , 22 if bb won more matches than aa , or 00 if their number of wins was equal.

Find the winner in no more than 132n+1\left \lceil \frac{1}{3} \cdot 2^{n + 1} \right \rceil queries. Here x\lceil x \rceil denotes the value of xx rounded up to the nearest integer.

Note that the tournament is long over, meaning that the results are fixed and do not depend on your queries.

输入格式

The first line contains a single integer tt ( 1t2141 \leq t \leq 2^{14} ) — the number of test cases.

The only line of input contains a single integer nn ( 1n171 \leq n \leq 17 ).

It is guaranteed that the sum of 2n2^n over all test cases does not exceed 2172^{17} .

输出格式

The interaction for each test case begins by reading the integer nn .

To make a query, output "? a b" ( 1a,b2n1 \leq a, b \leq 2^n ) without quotes. Afterwards, you should read one single integer — the answer for your query. You can make at most 132n+1\left \lceil \frac{1}{3} \cdot 2^{n + 1} \right \rceil such queries in each test case.

If you receive the integer 1-1 instead of an answer or a valid value of nn , it means your program has made an invalid query, has exceed the limit of queries, or has given incorrect answer on the previous test case. Your program must terminate immediately to receive a Wrong Answer verdict. Otherwise you can get an arbitrary verdict because your solution will continue to read from a closed stream.

When you are ready to give the final answer, output "! x" ( 1x2n1 \leq x \leq 2^n ) without quotes — the winner of the tournament. Giving this answer does not count towards the limit of queries. After solving a test case, your program should move to the next one immediately. After solving all test cases, your program should be terminated immediately.

After printing a query or the answer 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.

Hacks

To hack, use the following format.

The first line contains an integer tt ( 1t2141 \leq t \leq 2^{14} ) — the number of test cases.

The first line of each test case contains a single integer nn ( 1n171 \leq n \leq 17 ).

The second line of each test case contains 2n2^n numbers on a line — the number of wins of each participant. There should be a sequence of matches that is consistent with the number of wins.

The sum of 2n2^n should not exceed 2172^{17} .

输入输出样例

  • 输入#1

    1
    3
    
    2
    
    0
    
    2

    输出#1

    ? 1 4
    
    ? 1 6
    
    ? 5 7
    
    ! 7

说明/提示

The tournament in the first test case is shown below. The number of wins is [1,0,0,2,0,1,3,0][1,0,0,2,0,1,3,0] .

In this example, the winner is the 77 -th contestant.

首页