CF1617D1.Too Many Impostors (easy version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
This is an interactive problem. The only difference between the easy and hard version is the limit on number of questions.
There are n players labelled from 1 to n . It is guaranteed that n is a multiple of 3 .
Among them, there are k impostors and n−k crewmates. The number of impostors, k , is not given to you. It is guaranteed that 3n<k<32n .
In each question, you can choose three distinct integers a , b , c ( 1≤a,b,c≤n ) and ask: "Among the players labelled a , b and c , are there more impostors or more crewmates?" You will be given the integer 0 if there are more impostors than crewmates, and 1 otherwise.
Find the number of impostors k and the indices of players that are impostors after asking at most 2n questions.
The jury is adaptive, which means the indices of impostors may not be fixed beforehand and can depend on your questions. It is guaranteed that there is at least one set of impostors which fulfills the constraints and the answers to your questions at any time.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤100 ). Description of the test cases follows.
The first and only line of each test case contains a single integer n ( 6≤n<104 , n is a multiple of 3 ) — the number of players.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅104 .
输出格式
For each test case, the interaction starts with reading n .
Then you are allowed to make at most 2n questions in the following way:
"? a b c" ( 1≤a,b,c≤n , a , b and c are pairwise distinct).
After each one, you should read an integer r , which is equal to 0 if there are more impostors than crewmates among players labelled a , b and c , and equal to 1 otherwise.
Answer −1 instead of 0 or 1 means that you made an invalid query or exceeded the number of queries. Exit immediately after receiving −1 and you will see Wrong answer verdict. Otherwise you can get an arbitrary verdict because your solution will continue to read from a closed stream.
When you have found the indices of all impostors, print a single line "! " (without quotes), followed by the number of impostors k , followed by k integers representing the indices of the impostors. Please note that you must print all this information on the same line.
After printing the answer, your program must then continue to solve the remaining test cases, or exit if all test cases have been solved.
After printing the queries and answers do not forget to output end of line and flush the output buffer. Otherwise, you will get the Idleness limit exceeded verdict. To do flush use:
- fflush(stdout) or cout.flush() in C++;
- System.out.flush() in Java;
- flush(output) in Pascal;
- stdout.flush() in Python;
- Read documentation for other languages.
Hacks
You cannot make hacks in this problem.
输入输出样例
输入#1
2 6 0 1 9 1
输出#1
? 1 2 3 ? 3 4 5 ! 3 4 1 2 ? 7 1 9 ! 4 2 3 6 8
说明/提示
Explanation for example interaction (note that this example only exists to demonstrate the interaction procedure and does not provide any hint for the solution):
For the first test case:
Question "? 1 2 3" returns 0 , so there are more impostors than crewmates among players 1 , 2 and 3 .
Question "? 3 4 5" returns 1 , so there are more crewmates than impostors among players 3 , 4 and 5 .
Outputting "! 3 4 1 2" means that one has found all the impostors, by some miracle. There are k=3 impostors. The players who are impostors are players 4 , 1 and 2 .
For the second test case:
Question "? 7 1 9" returns 1 , so there are more crewmates than impostors among players 7 , 1 and 9 .
Outputting "! 4 2 3 6 8" means that one has found all the impostors, by some miracle. There are k=4 impostors. The players who are impostors are players 2 , 3 , 6 and 8 .