CF1936A.Bitwise Operation Wizard

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is an interactive problem.

There is a secret sequence p0,p1,,pn1p_0, p_1, \ldots, p_{n-1} , which is a permutation of {0,1,,n1}\{0,1,\ldots,n-1\} .

You need to find any two indices ii and jj such that pipjp_i \oplus p_j is maximized, where \oplus denotes the bitwise XOR operation.

To do this, you can ask queries. Each query has the following form: you pick arbitrary indices aa , bb , cc , and dd ( 0a,b,c,d<n0 \le a,b,c,d < n ). Next, the jury calculates x=(papb)x = (p_a \mid p_b) and y=(pcpd)y = (p_c \mid p_d) , where | denotes the bitwise OR operation. Finally, you receive the result of comparison between xx and yy . In other words, you are told if x<yx < y , x>yx > y , or x=yx = y .

Please find any two indices ii and jj ( 0i,j<n0 \le i,j < n ) such that pipjp_i \oplus p_j is maximum among all such pairs, using at most 3n3n queries. If there are multiple pairs of indices satisfying the condition, you may output any one of them.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t1031 \le t \le 10^3 ). The description of the test cases follows.

输出格式

The first line of each test case contains one integer nn ( 2n1042 \le n \le 10^4 ). At this moment, the permutation p0,p1,,pn1p_0, p_1, \ldots, p_{n-1} is chosen. The interactor in this task is not adaptive. In other words, the sequence pp is fixed in every test case and does not change during the interaction.

To ask a query, you need to pick four indices aa , bb , cc , and dd ( 0a,b,c,d<n0 \le a,b,c,d < n ) and print the line of the following form:

  • "? a b c d"

After that, you receive:

  • "<" if (papb)<(pcpd)(p_a \mid p_b) < (p_c \mid p_d) ;
  • "=" if (papb)=(pcpd)(p_a \mid p_b) = (p_c \mid p_d) ;
  • ">" if (papb)>(pcpd)(p_a \mid p_b) > (p_c \mid p_d) .

You can make at most 3n3n queries of this form.

Next, if your program has found a pair of indices ii and jj ( 0i,j<n0 \le i, j < n ) such that pipjp_i \oplus p_j is maximized, print the line of the following form:

  • "! i j"

Note that this line is not considered a query and is not taken into account when counting the number of queries asked.

After this, proceed to the next test case.

If you make more than 3n3n queries during an interaction, your program must terminate immediately, and you will receive the Wrong Answer verdict. Otherwise, you can get an arbitrary verdict because your solution will continue to read from a closed stream.

After printing a query or the answer for a test case, do not forget to output the end of line and flush the output. Otherwise, you will get the verdict 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 10410^4 .

Hacks

To hack, follow the test format below.

The first line contains the number of test cases tt ( 1t1031 \le t \le 10^3 ). The description of the test cases follows.

The first line of each test case contains one integer nn ( 2n1042 \le n \le 10^4 ).

The second line of each test case contains nn integers p0,p1,,pn1p_0,p_1,\ldots,p_{n-1} , which represent a permutation of integers from 00 to n1n - 1 .

The sum of nn over all test cases should not exceed 10410^4 .

输入输出样例

  • 输入#1

    2
    4
    
    &lt;
    
    =
    
    &gt;
    
    2

    输出#1

    ? 0 2 3 1
    
    ? 1 1 2 3
    
    ? 1 2 0 3
    
    ! 3 2
    
    ! 0 1

说明/提示

In the first test case, the hidden permutation is p=[0,3,1,2]p=[0,3,1,2] .

For the query "? 0 2 3 1", the jury return "<" because (p0p2)=(01)=1<(p3p1)=(23)=3(p_0 \mid p_2) = (0 \mid 1) =1 < (p_3 \mid p_1) = (2 \mid 3) = 3 .

For the query "? 1 1 2 3", the jury return "=" because (p1p1)=(33)=3=(p2p3)=(12)=3(p_1 \mid p_1) = (3\mid 3)= 3 = (p_2 \mid p_3) = (1 \mid 2)=3 .

For the query "? 1 2 0 3", the jury return ">" because (p1p2)=(31)=3>(p0p3)=(02)=2(p_1 \mid p_2) = (3 \mid 1) = 3 > (p_0 \mid p_3) = (0\mid 2)=2 .

The answer i=3i = 3 and j=2j = 2 is valid: (p3p2)=(21)=3(p_3 \oplus p_2) = (2 \oplus 1) = 3 is indeed equal to the maximum possible value of pipjp_i \oplus p_j . Another valid answer would be i=0i=0 and j=1j=1 . As the number of queries does not exceed 3n=123n=12 , the answer is considered correct.

In the second test case, n=2n = 2 , so pp is either [0,1][0, 1] or [1,0][1, 0] . In any case, p0p1=1p_0 \oplus p_1 = 1 is maximum possible.

首页