CF1698D.Fixed Point Guessing
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
This is an interactive problem.
Initially, there is an array a=[1,2,…,n] , where n is an odd positive integer. The jury has selected 2n−1 disjoint pairs of elements, and then the elements in those pairs are swapped. For example, if a=[1,2,3,4,5] , and the pairs 1↔4 and 3↔5 are swapped, then the resulting array is [4,2,5,1,3] .
As a result of these swaps, exactly one element will not change position. You need to find this element.
To do this, you can ask several queries. In each query, you can pick two integers l and r ( 1≤l≤r≤n ). In return, you will be given the elements of the subarray [al,al+1,…,ar] sorted in increasing order.
Find the element which did not change position. You can make at most 15 queries.
The array a is fixed before the interaction and does not change after your queries.
Recall that an array b is a subarray of the array a if b can be obtained from a by deletion of several (possibly, zero or all) elements from the beginning and several (possibly, zero or all) elements from the end.
输入格式
Each test contains multiple test cases. The first line contains an integer t ( 1≤t≤500 ) — the number of test cases. The description of the test cases follows.
The first line of each test case contains an integer n ( 3≤n<104 ; n is odd) — the length of the array a .
After reading the first line of each test case, you should begin the interaction.
It is guaranteed that the sum of n over all test cases does not exceed 104 .
输出格式
For each test case, begin the interaction by reading the integer n .
To make a query, output " ?lr " ( 1≤l≤r≤n ) without quotes. Afterwards, you should read in r−l+1 integers — the integers al,al+1,…,ar , in increasing order. You can make at most 15 such queries in a single test case.
If you receive the integer −1 instead of an answer or the integer n , it means your program has made an invalid query, has exceed the limit of queries, or has given incorrect answer on the previous test case. Your program must terminate immediately to receive a Wrong Answer verdict. Otherwise you can get an arbitrary verdict because your solution will continue to read from a closed stream.
When you are ready to give the final answer, output " !x " ( 1≤x≤n ) without quotes — the element that did not change position. Giving this answer does not count towards the limit of 15 queries. Afterwards, your program must continue to solve the remaining test cases, or exit if all test cases have been solved.
After printing a query 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 documentation for other languages.
Hacks
To make a hack, use the following format. The first line must contain an integer t ( 1≤t≤500 ) — the number of test cases. The description of the test cases follows.
The first line of each test case must contain an integer n ( 3≤n<104 ; n is odd) — the length of the array a .
The second line of each test case must contain n space-separated integers a1,a2,…,an ( 1≤ai≤n ) — the elements of a . The array a should be the result of 2n−1 disjoint swaps on the array [1,2,…,n] .
输入输出样例
输入#1
2 5 1 2 4 5 1 3 5 3 1
输出#1
? 1 4 ? 3 5 ! 2 ? 1 1 ! 1
说明/提示
In the first test, the interaction proceeds as follows.
SolutionJuryExplanation 2 There are 2 test cases. 5 In the first test case, the hidden array is [4,2,5,1,3] , with length 5 . ? 1 4 1 2 4 5 The solution requests the subarray [4,2,5,1] in increasing order, and the jury responds with [1,2,4,5] . ? 3 5 1 3 5 The solution requests the subarray [5,1,3] in increasing order, and the jury responds with [1,3,5] . ! 2 The solution has somehow determined that a2=2 , and outputs it. Since the output is correct, the jury continues to the next test case. 3 In the second test case, the hidden array is [1,3,2] , with length 3 . ? 1 1 1 The solution requests the number [1] only, and the jury responds with [1] . ! 1 The solution has determined that a1=1 , and outputs it. Since the output is correct and there are no more test cases, the jury and the solution exit.Note that the line breaks in the example input and output are for the sake of clarity, and do not occur in the real interaction.