A14172 | Guess the K-th Zero (Hard version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is an interactive problem.
This is a hard version of the problem. The difference from the easy version is that in the hard version $1 \le t \le \min(n, 10^4)$ and the total number of queries is limited to $6 \cdot 10^4$ .
Polycarp is playing a computer game. In this game, an array consisting of zeros and ones is hidden. Polycarp wins if he guesses the position of the $k$ -th zero from the left $t$ times.
Polycarp can make no more than $6 \cdot 10^4$ requests totally of the following type:
- ? $l$ $r$ — find out the sum of all elements in positions from $l$ to $r$ ( $1 \le l \le r \le n$ ) inclusive.
To make the game more interesting, each guessed zero turns into one and the game continues on the changed array. More formally, if the position of the $k$ -th zero was $x$ , then after Polycarp guesses this position, the $x$ -th element of the array will be replaced from $0$ to $1$ .
Help Polycarp win the game.
This is a hard version of the problem. The difference from the easy version is that in the hard version $1 \le t \le \min(n, 10^4)$ and the total number of queries is limited to $6 \cdot 10^4$ .
Polycarp is playing a computer game. In this game, an array consisting of zeros and ones is hidden. Polycarp wins if he guesses the position of the $k$ -th zero from the left $t$ times.
Polycarp can make no more than $6 \cdot 10^4$ requests totally of the following type:
- ? $l$ $r$ — find out the sum of all elements in positions from $l$ to $r$ ( $1 \le l \le r \le n$ ) inclusive.
To make the game more interesting, each guessed zero turns into one and the game continues on the changed array. More formally, if the position of the $k$ -th zero was $x$ , then after Polycarp guesses this position, the $x$ -th element of the array will be replaced from $0$ to $1$ .
Help Polycarp win the game.
输入格式
无
输出格式
First, your program must read two integers $n$ and $t$ ( $1 \le n \le 2 \cdot 10^5$ , $1 \le t \le \min(n, 10^4)$ ).
Then $t$ lines follow, each of which contains one integer $k$ ( $1 \le k \le n$ ). It is guaranteed that at the moment of the request the array contains at least $k$ zeros. In order to get the next value of $k$ , you must output the answer for the previous value of $k$ .
After that, you can make no more than $6 \cdot 10^4$ requests in total.
Use the following format to output the answer (it is not a request, it doesn't count in $6 \cdot 10^4$ ):
- ! $x$ — position of the $k$ -th zero.
Positions in the array are numbered from left to right from $1$ to $n$ inclusive.
After printing $t$ answers, your program should exit immediately.
In this task, the interactor is not adaptive. This means that within the same test, the hidden array and the queries do not change.
In case of an incorrect query, -1 will be displayed. When this value is received, your program must immediately exit normally (for example, by calling exit(0)), otherwise, the testing system may issue an arbitrary verdict.
If the number of requests is exceeded, the verdict wrong answer will be displayed.
Your solution may get the verdict Idleness limit exceeded if you don't print anything or forget to flush the output buffer.
To flush the output buffer, you need to do the following immediately after the query output and the end-of-line character:
- 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
Use the following format for hacks:
On the first line print the string $s$ ( $1 \le |s| \le 2 \cdot 10^5$ ), consisting of zeros and ones, and an integer $t$ ( $1 \le t \le \min(|s|, 10^4)$ ) — hidden array and number of requests, respectively. In the next $t$ lines output the number $k$ ( $1 \le k \le |s|$ ).
The hacked solution will not have direct access to the hidden array.
Then $t$ lines follow, each of which contains one integer $k$ ( $1 \le k \le n$ ). It is guaranteed that at the moment of the request the array contains at least $k$ zeros. In order to get the next value of $k$ , you must output the answer for the previous value of $k$ .
After that, you can make no more than $6 \cdot 10^4$ requests in total.
Use the following format to output the answer (it is not a request, it doesn't count in $6 \cdot 10^4$ ):
- ! $x$ — position of the $k$ -th zero.
Positions in the array are numbered from left to right from $1$ to $n$ inclusive.
After printing $t$ answers, your program should exit immediately.
In this task, the interactor is not adaptive. This means that within the same test, the hidden array and the queries do not change.
In case of an incorrect query, -1 will be displayed. When this value is received, your program must immediately exit normally (for example, by calling exit(0)), otherwise, the testing system may issue an arbitrary verdict.
If the number of requests is exceeded, the verdict wrong answer will be displayed.
Your solution may get the verdict Idleness limit exceeded if you don't print anything or forget to flush the output buffer.
To flush the output buffer, you need to do the following immediately after the query output and the end-of-line character:
- 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
Use the following format for hacks:
On the first line print the string $s$ ( $1 \le |s| \le 2 \cdot 10^5$ ), consisting of zeros and ones, and an integer $t$ ( $1 \le t \le \min(|s|, 10^4)$ ) — hidden array and number of requests, respectively. In the next $t$ lines output the number $k$ ( $1 \le k \le |s|$ ).
The hacked solution will not have direct access to the hidden array.
输入输出样例
输入 #1
6 2 2 2 1 1 0 1 0
输出 #1
? 4 6 ? 1 1 ? 1 2 ? 5 5 ! 5 ? 2 2 ! 2
In the first test, the array $[1, 0, 1, 1, 0, 1]$ is hidden. After answering the query $k=2$ , the array changed to $[1, 0, 1, 1, 1, 1]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted