CF1372F.Omkar and Modes
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Ray lost his array and needs to find it by asking Omkar. Omkar is willing to disclose that the array has the following qualities:
- The array has n ( 1≤n≤2⋅105 ) elements.
- Every element in the array ai is an integer in the range 1≤ai≤109.
- The array is sorted in nondecreasing order.
Ray is allowed to send Omkar a series of queries. A query consists of two integers, l and r such that 1≤l≤r≤n . Omkar will respond with two integers, x and f . x is the mode of the subarray from index l to index r inclusive. The mode of an array is defined by the number that appears the most frequently. If there are multiple numbers that appear the most number of times, the smallest such number is considered to be the mode. f is the amount of times that x appears in the queried subarray.
The array has k ( 1≤k≤min(25000,n) ) distinct elements. However, due to Ray's sins, Omkar will not tell Ray what k is. Ray is allowed to send at most 4k queries.
Help Ray find his lost array.
输入格式
The only line of the input contains a single integer n ( 1≤n≤2⋅105 ), which equals to the length of the array that you are trying to find.
输出格式
The interaction starts with reading n .
Then you can make one type of query:
- " ?lr " ( 1≤l≤r≤n ) where l and r are the bounds of the subarray that you wish to query.
The answer to each query will be in the form " xf " where x is the mode of the subarray and f is the number of times x appears in the subarray.
- x satisfies ( 1≤x≤109 ).
- f satisfies ( 1≤f≤r−l+1 ).
- If you make more than 4k queries or violate the number range in the query, you will get an output "-1."
- If you terminate after receiving the response " −1 ", you will get the "Wrong answer" verdict. Otherwise you can get an arbitrary verdict because your solution will continue to read from a closed stream.
To output your answer, print:
- " !a1a2…an−1an " which is an exclamation point followed by the array with a space between every element.
And quit after that. This query is not counted towards the 4k queries limit.
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.
Hack Format
To hack, output 1 integer on the first line, n ( 1≤n≤2⋅105 ). On the second line output n integers a1,a2,…,an−1,an separated by a space such that there are at most 25000 distinct numbers and aj≤aj+1 for all j from 1 to n−1 .
输入输出样例
输入#1
6 2 2 2 2 3 2 2 1
输出#1
? 1 6 ? 1 3 ? 4 6 ? 3 4 ! 1 2 2 3 3 4
说明/提示
The first query is l=1 and r=6 . The mode is 2 , and 2 appears 2 times, so x=2 and f=2 . Note that 3 also appears two times, but 2 is outputted because 2 is smaller.
The second query is l=1 and r=3 . The mode is 2 and 2 appears twice in the subarray with indices [1,3] .
The third query is l=4 and r=6 . The mode is 3 and 3 appears twice in the subarray with indices [4,6] .
The fourth query is l=3 and r=4 . The mode is 2 , which appears once in the subarray with indices [3,4] . Note that 3 also appears once in that range, but 2 is smaller than 3 .