CF1521C.Nastia and a Hidden Permutation

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is an interactive problem!

Nastia has a hidden permutation pp of length nn consisting of integers from 11 to nn . You, for some reason, want to figure out the permutation. To do that, you can give her an integer tt ( 1t21 \le t \le 2 ), two different indices ii and jj ( 1i,jn1 \le i, j \le n , iji \neq j ), and an integer xx ( 1xn11 \le x \le n - 1 ).

Depending on tt , she will answer:

  • t=1t = 1 : max(min(x,pi),min(x+1,pj))\max{(\min{(x, p_i)}, \min{(x + 1, p_j)})} ;
  • t=2t = 2 : min(max(x,pi),max(x+1,pj))\min{(\max{(x, p_i)}, \max{(x + 1, p_j)})} .

You can ask Nastia at most 3n2+30\lfloor \frac {3 \cdot n} { 2} \rfloor + 30 times. It is guaranteed that she will not change her permutation depending on your queries. Can you guess the permutation?

输入格式

The input consists of several test cases. In the beginning, you receive the integer TT ( 1T100001 \le T \le 10\,000 ) — the number of test cases.

At the beginning of each test case, you receive an integer nn ( 3n1043 \le n \le 10^4 ) — the length of the permutation pp .

It's guaranteed that the permutation is fixed beforehand and that the sum of nn in one test doesn't exceed 21042 \cdot 10^4 .

输出格式

To ask a question, print "? tt ii jj xx " ( t=1t = 1 or t=2t = 2 , 1i,jn1 \le i, j \le n , iji \neq j , 1xn11 \le x \le n - 1 ) Then, you should read the answer.

If we answer with 1−1 instead of a valid answer, that means you exceeded the number of queries or made an invalid query. Exit immediately after receiving 1−1 and you will see the Wrong Answer verdict. Otherwise, you can get an arbitrary verdict because your solution will continue to read from a closed stream.

To print the answer, print "! p1p_1 p2p_2 \ldots pnp_{n} (without quotes). Note that answering doesn't count as one of the 3n2+30\lfloor \frac {3 \cdot n} {2} \rfloor + 30 queries.

After printing a query or printing 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 the documentation for other languages.

Hacks

To hack the solution, use the following test format.

The first line should contain a single integer TT ( 1T100001 \le T \le 10\,000 ) — the number of test cases.

For each test case in the first line print a single integer nn ( 3n1043 \le n \le 10^4 ) — the length of the hidden permutation pp .

In the second line print nn space-separated integers p1,p2,,pnp_1, p_2, \ldots, p_n ( 1pin1 \le p_i \le n ), where pp is permutation.

Note that the sum of nn over all test cases should not exceed 21042 \cdot 10^4 .

输入输出样例

  • 输入#1

    2
    4
    
    3
    
    2
    
    5
    
    3

    输出#1

    ? 2 4 1 3
    
    ? 1 2 4 2
    
    ! 3 1 4 2
    
    ? 2 3 4 2
    
    ! 2 5 3 4 1

说明/提示

Consider the first test case.

The hidden permutation is [3,1,4,2][3, 1, 4, 2] .

We print: "? 22 44 11 33 " and get back min(max(3,p4),max(4,p1))=3\min{(\max{(3, p_4}), \max{(4, p_1)})} = 3 .

We print: "? 11 22 44 22 " and get back max(min(2,p2),min(3,p4))=2\max{(\min{(2, p_2)}, \min{(3, p_4)})} = 2 .

Consider the second test case.

The hidden permutation is [2,5,3,4,1][2, 5, 3, 4, 1] .

We print: "? 22 33 44 22 " and get back min(max(2,p3),max(3,p4))=3\min{(\max{(2, p_3}), \max{(3, p_4)})} = 3 .

首页