A11151 | The penguin's game
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Pay attention: this problem is interactive.
Penguin Xoriy came up with a new game recently. He has $n$ icicles numbered from $1$ to $n$ . Each icicle has a temperature — an integer from $1$ to $10^{9}$ . Exactly two of these icicles are special: their temperature is $y$ , while a temperature of all the others is $x≠y$ . You have to find those special icicles. You can choose a non-empty subset of icicles and ask the penguin what is the bitwise exclusive OR (XOR) of the temperatures of the icicles in this subset. Note that you can't ask more than 19 questions.
You are to find the special icicles.
Penguin Xoriy came up with a new game recently. He has $n$ icicles numbered from $1$ to $n$ . Each icicle has a temperature — an integer from $1$ to $10^{9}$ . Exactly two of these icicles are special: their temperature is $y$ , while a temperature of all the others is $x≠y$ . You have to find those special icicles. You can choose a non-empty subset of icicles and ask the penguin what is the bitwise exclusive OR (XOR) of the temperatures of the icicles in this subset. Note that you can't ask more than 19 questions.
You are to find the special icicles.
输入格式
The first line contains three integers $n$ , $x$ , $y$ ( $2<=n<=1000$ , $1<=x,y<=10^{9}$ , $x≠y$ ) — the number of icicles, the temperature of non-special icicles and the temperature of the special icicles.
输出格式
To give your answer to the penguin you have to print character "!" (without quotes), then print two integers $p_{1}$ , $p_{2}$ ( $p_{1}<p_{2}$ ) — the indexes of the special icicles in ascending order. Note that "!" and $p_{1}$ should be separated by a space; the indexes should be separated by a space too. After you gave the answer your program should terminate immediately.
Interaction
To ask a question print character "?" (without quotes), an integer $c$ ( $1<=c<=n$ ), and $c$ distinct integers $p_{1}$ , $p_{2}$ , ..., $p_{c}$ ( $1<=p_{i}<=n$ ) — the indexes of icicles that you want to know about. Note that "?" and $c$ should be separated by a space; the indexes should be separated by a space too.
After you asked the question, read a single integer — the answer.
Note that you can't ask more than 19 questions. If you ask more than 19 questions or at least one incorrect question, your solution will get "Wrong answer".
If at some moment your program reads $-1$ as an answer, it should immediately exit (for example, by calling exit(0)). You will get "Wrong answer" in this case, it means that you asked more than 19 questions, or asked an invalid question. If you ignore this, you can get other verdicts since your program will continue to read from a closed stream.
Your solution will get "Idleness Limit Exceeded", if you don't print anything or forget to flush the output, including for the final answer .
To flush you can use (just after printing):
- fflush(stdout) in C++;
- System.out.flush() in Java;
- stdout.flush() in Python;
- flush(output) in Pascal;
- For other languages see the documentation.
Hacking
For hacking use the following format:
$n$ $x$ $y$ $p_{1}$ $p_{2}$
Here $1<=p_{1}<p_{2}<=n$ are the indexes of the special icicles.
Contestant programs will not be able to see this input.
Interaction
To ask a question print character "?" (without quotes), an integer $c$ ( $1<=c<=n$ ), and $c$ distinct integers $p_{1}$ , $p_{2}$ , ..., $p_{c}$ ( $1<=p_{i}<=n$ ) — the indexes of icicles that you want to know about. Note that "?" and $c$ should be separated by a space; the indexes should be separated by a space too.
After you asked the question, read a single integer — the answer.
Note that you can't ask more than 19 questions. If you ask more than 19 questions or at least one incorrect question, your solution will get "Wrong answer".
If at some moment your program reads $-1$ as an answer, it should immediately exit (for example, by calling exit(0)). You will get "Wrong answer" in this case, it means that you asked more than 19 questions, or asked an invalid question. If you ignore this, you can get other verdicts since your program will continue to read from a closed stream.
Your solution will get "Idleness Limit Exceeded", if you don't print anything or forget to flush the output, including for the final answer .
To flush you can use (just after printing):
- fflush(stdout) in C++;
- System.out.flush() in Java;
- stdout.flush() in Python;
- flush(output) in Pascal;
- For other languages see the documentation.
Hacking
For hacking use the following format:
$n$ $x$ $y$ $p_{1}$ $p_{2}$
Here $1<=p_{1}<p_{2}<=n$ are the indexes of the special icicles.
Contestant programs will not be able to see this input.
输入输出样例
输入 #1
4 2 1 2 1 1
输出 #1
? 3 1 2 3 ? 1 1 ? 1 3 ! 1 3
The answer for the first question is .
The answer for the second and the third questions is 1, therefore, special icicles are indexes 1 and 3.
You can read more about bitwise XOR operation here: [https://en.wikipedia.org/wiki/Bitwise\_operation#XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR).
The answer for the second and the third questions is 1, therefore, special icicles are indexes 1 and 3.
You can read more about bitwise XOR operation here: [https://en.wikipedia.org/wiki/Bitwise\_operation#XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted