A14167 | Nastia and a Hidden Permutation
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is an interactive problem!
Nastia has a hidden permutation $p$ of length $n$ consisting of integers from $1$ to $n$ . You, for some reason, want to figure out the permutation. To do that, you can give her an integer $t$ ( $1 \le t \le 2$ ), two different indices $i$ and $j$ ( $1 \le i, j \le n$ , $i \neq j$ ), and an integer $x$ ( $1 \le x \le n - 1$ ).
Depending on $t$ , she will answer:
- $t = 1$ : $\max{(\min{(x, p_i)}, \min{(x + 1, p_j)})}$ ;
- $t = 2$ : $\min{(\max{(x, p_i)}, \max{(x + 1, p_j)})}$ .
You can ask Nastia at most $\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?
Nastia has a hidden permutation $p$ of length $n$ consisting of integers from $1$ to $n$ . You, for some reason, want to figure out the permutation. To do that, you can give her an integer $t$ ( $1 \le t \le 2$ ), two different indices $i$ and $j$ ( $1 \le i, j \le n$ , $i \neq j$ ), and an integer $x$ ( $1 \le x \le n - 1$ ).
Depending on $t$ , she will answer:
- $t = 1$ : $\max{(\min{(x, p_i)}, \min{(x + 1, p_j)})}$ ;
- $t = 2$ : $\min{(\max{(x, p_i)}, \max{(x + 1, p_j)})}$ .
You can ask Nastia at most $\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 $T$ ( $1 \le T \le 10\,000$ ) — the number of test cases.
At the beginning of each test case, you receive an integer $n$ ( $3 \le n \le 10^4$ ) — the length of the permutation $p$ .
It's guaranteed that the permutation is fixed beforehand and that the sum of $n$ in one test doesn't exceed $2 \cdot 10^4$ .
At the beginning of each test case, you receive an integer $n$ ( $3 \le n \le 10^4$ ) — the length of the permutation $p$ .
It's guaranteed that the permutation is fixed beforehand and that the sum of $n$ in one test doesn't exceed $2 \cdot 10^4$ .
输出格式
To ask a question, print "? $t$ $i$ $j$ $x$ " ( $t = 1$ or $t = 2$ , $1 \le i, j \le n$ , $i \neq j$ , $1 \le x \le n - 1$ ) Then, you should read the answer.
If we answer with $−1$ instead of a valid answer, that means you exceeded the number of queries or made an invalid query. Exit immediately after receiving $−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 "! $p_1$ $p_2$ $\ldots$ $p_{n}$ (without quotes). Note that answering doesn't count as one of the $\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 $T$ ( $1 \le T \le 10\,000$ ) — the number of test cases.
For each test case in the first line print a single integer $n$ ( $3 \le n \le 10^4$ ) — the length of the hidden permutation $p$ .
In the second line print $n$ space-separated integers $p_1, p_2, \ldots, p_n$ ( $1 \le p_i \le n$ ), where $p$ is permutation.
Note that the sum of $n$ over all test cases should not exceed $2 \cdot 10^4$ .
If we answer with $−1$ instead of a valid answer, that means you exceeded the number of queries or made an invalid query. Exit immediately after receiving $−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 "! $p_1$ $p_2$ $\ldots$ $p_{n}$ (without quotes). Note that answering doesn't count as one of the $\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 $T$ ( $1 \le T \le 10\,000$ ) — the number of test cases.
For each test case in the first line print a single integer $n$ ( $3 \le n \le 10^4$ ) — the length of the hidden permutation $p$ .
In the second line print $n$ space-separated integers $p_1, p_2, \ldots, p_n$ ( $1 \le p_i \le n$ ), where $p$ is permutation.
Note that the sum of $n$ over all test cases should not exceed $2 \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]$ .
We print: "? $2$ $4$ $1$ $3$ " and get back $\min{(\max{(3, p_4}), \max{(4, p_1)})} = 3$ .
We print: "? $1$ $2$ $4$ $2$ " and get back $\max{(\min{(2, p_2)}, \min{(3, p_4)})} = 2$ .
Consider the second test case.
The hidden permutation is $[2, 5, 3, 4, 1]$ .
We print: "? $2$ $3$ $4$ $2$ " and get back $\min{(\max{(2, p_3}), \max{(3, p_4)})} = 3$ .
The hidden permutation is $[3, 1, 4, 2]$ .
We print: "? $2$ $4$ $1$ $3$ " and get back $\min{(\max{(3, p_4}), \max{(4, p_1)})} = 3$ .
We print: "? $1$ $2$ $4$ $2$ " and get back $\max{(\min{(2, p_2)}, \min{(3, p_4)})} = 2$ .
Consider the second test case.
The hidden permutation is $[2, 5, 3, 4, 1]$ .
We print: "? $2$ $3$ $4$ $2$ " and get back $\min{(\max{(2, p_3}), \max{(3, p_4)})} = 3$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted