CF1520F2.Guess the K-th Zero (Hard version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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≤t≤min(n,104) and the total number of queries is limited to 6⋅104 .
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⋅104 requests totally of the following type:
- ? l r — find out the sum of all elements in positions from l to r ( 1≤l≤r≤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≤n≤2⋅105 , 1≤t≤min(n,104) ).
Then t lines follow, each of which contains one integer k ( 1≤k≤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⋅104 requests in total.
Use the following format to output the answer (it is not a request, it doesn't count in 6⋅104 ):
- ! 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≤∣s∣≤2⋅105 ), consisting of zeros and ones, and an integer t ( 1≤t≤min(∣s∣,104) ) — hidden array and number of requests, respectively. In the next t lines output the number k ( 1≤k≤∣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] .