CF1867C.Salyg1n and the MEX Game

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is an interactive problem!

salyg1n gave Alice a set SS of nn distinct integers s1,s2,,sns_1, s_2, \ldots, s_n ( 0si1090 \leq s_i \leq 10^9 ). Alice decided to play a game with this set against Bob. The rules of the game are as follows:

  • Players take turns, with Alice going first.
  • In one move, Alice adds one number xx ( 0x1090 \leq x \leq 10^9 ) to the set SS . The set SS must not contain the number xx at the time of the move.
  • In one move, Bob removes one number yy from the set SS . The set SS must contain the number yy at the time of the move. Additionally, the number yy must be strictly smaller than the last number added by Alice.
  • The game ends when Bob cannot make a move or after 2n+12 \cdot n + 1 moves (in which case Alice's move will be the last one).
  • The result of the game is MEX(S)\operatorname{MEX}\dagger(S) ( SS at the end of the game).
  • Alice aims to maximize the result, while Bob aims to minimize it.

Let RR be the result when both players play optimally. In this problem, you play as Alice against the jury program playing as Bob. Your task is to implement a strategy for Alice such that the result of the game is always at least RR .

\dagger MEX\operatorname{MEX} of a set of integers c1,c2,,ckc_1, c_2, \ldots, c_k is defined as the smallest non-negative integer xx which does not occur in the set cc . For example, MEX({0,1,2,4})\operatorname{MEX}(\{0, 1, 2, 4\}) == 33 .

输入格式

The first line contains an integer tt ( 1t1051 \leq t \leq 10^5 ) - the number of test cases.

输出格式

The interaction between your program and the jury program begins with reading an integer nn ( 1n1051 \leq n \leq 10^5 ) - the size of the set SS before the start of the game.

Then, read one line - nn distinct integers sis_i (0s1<s2<<sn109)(0 \leq s_1 < s_2 < \ldots < s_n \leq 10^9) - the set SS given to Alice.

To make a move, output an integer xx ( 0x1090 \leq x \leq 10^9 ) - the number you want to add to the set SS . SS must not contain xx at the time of the move. Then, read one integer yy (2y109)(-2 \leq y \leq 10^9) .

  • If 0y1090 \leq y \leq 10^9 - Bob removes the number yy from the set SS . It's your turn!
  • If yy == 1-1 - the game is over. After this, proceed to handle the next test case or terminate the program if it was the last test case.
  • Otherwise, yy == 2-2 . This means that you made an invalid query. Your program should immediately terminate to receive the verdict Wrong Answer. Otherwise, it may receive any other verdict.

After printing a query do not forget to output the 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 the documentation for other languages.

It is guaranteed that the sum of nn over all test cases does not exceed 10510^5 .Do not attempt to hack this problem.

输入输出样例

  • 输入#1

    3
    5
    1 2 3 5 7
    
    7
    
    5
    
    -1
    
    3
    0 1 2
    
    0
    
    -1
    
    3
    5 7 57
    
    -1

    输出#1

    8
    
    57
    
    0
    
    3
    
    0
    
    0

说明/提示

In the first test case, the set SS changed as follows:

{ 1,2,3,5,71, 2, 3, 5, 7 } \to { 1,2,3,5,7,81, 2, 3, 5, 7, 8 } \to { 1,2,3,5,81, 2, 3, 5, 8 } \to { 1,2,3,5,8,571, 2, 3, 5, 8, 57 } \to { 1,2,3,8,571, 2, 3, 8, 57 } \to { 0,1,2,3,8,570, 1, 2, 3, 8, 57 }. In the end of the game, MEX(S)=4\operatorname{MEX}(S) = 4 , R=4R = 4 .

In the second test case, the set SS changed as follows:

{ 0,1,20, 1, 2 } \to { 0,1,2,30, 1, 2, 3 } \to { 1,2,31, 2, 3 } \to { 0,1,2,30, 1, 2, 3 }. In the end of the game, MEX(S)=4\operatorname{MEX}(S) = 4 , R=4R = 4 .

In the third test case, the set SS changed as follows:

{ 5,7,575, 7, 57 } \to { 0,5,7,570, 5, 7, 57 }. In the end of the game, MEX(S)=1\operatorname{MEX}(S) = 1 , R=1R = 1 .

首页