CF1147E.Rainbow Coins
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Carl has n coins of various colors, and he would like to sort them into piles. The coins are labeled 1,2,…,n , and each coin is exactly one of red, green, or blue. He would like to sort the coins into three different piles so one pile contains all red coins, one pile contains all green coins, and one pile contains all blue coins.
Unfortunately, Carl is colorblind, so this task is impossible for him. Luckily, he has a friend who can take a pair of coins and tell Carl if they are the same color or not. Using his friend, Carl believes he can now sort the coins. The order of the piles doesn't matter, as long as all same colored coins are in the one pile, and no two different colored coins are in the same pile.
His friend will answer questions about multiple pairs of coins in batches, and will answer about all of those pairs in parallel. Each coin should be in at most one pair in each batch. The same coin can appear in different batches.
Carl can use only 7 batches. Help him find the piles of coins after sorting.
输入格式
无
输出格式
You will be given multiple test cases. The first line contains an integer t (1≤t≤5 ) — the number of test cases.
The first line of each test case contains one integer n ( 1≤n≤105 ) — the number of coins. If you read in a value of −1 here, that means that you printed an invalid answer in the previous case and exit immediately to avoid getting other verdicts.
To ask a question, print "Q k x1 y1 … xk yk " ( 1≤k≤n/2,1≤xi,yi≤n,xi=yi ). k denotes the number of pairs in the batch, and xi,yi denote the i -th pair of coins in the batch. A coin can only appear at most once in a batch. All xi and yi should be distinct.
The judge will respond with a bitstring of length k , where the i -th character is "1" if xi and yi are the same color, and "0" otherwise. The judge will respond with −1 if you ever ask an invalid query. Make sure to exit immediately to avoid getting other verdicts.
When you are ready to answer, print four lines.
The first line contains "A k1 k2 k3 " ( 0≤k1,k2,k3 and k1+k2+k3=n ). These denote the sizes of the three piles.
The next line has k1 integers, the labels of the coins in the first pile.
The next line has k2 integers, the labels of the coins in the second pile.
The next line has k3 integers, the labels coins in the third pile.
Each coin must appear in exactly one pile.
You may only ask at most 7 batches per test case.
After printing a query and the answer 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, use the following format. Note that you can only hack with one test case.
The first line should contain a single integer t ( t=1 ).
The second line should contain a single string s consisting of only the characters "R", "G", "B" ( 1≤∣s∣≤105 ). The i -th character in this string represents the color of the i -th coin.
输入输出样例
输入#1
3 3 1 1 1 3 1 0 0 6 000 010 100 001 000
输出#1
Q 1 1 2 Q 1 2 3 Q 1 1 3 A 3 0 0 1 2 3 Q 1 1 3 Q 1 2 3 Q 1 1 2 A 2 0 1 1 3 2 Q 3 1 2 3 4 5 6 Q 3 1 3 2 5 4 6 Q 3 1 4 2 6 3 5 Q 3 1 5 2 4 3 6 Q 3 1 6 2 3 4 5 A 2 2 2 1 4 2 5 3 6
说明/提示
In the example, there are three test cases.
In the first test case, there are three coins. We ask about the pairs (1,2) , (2,3) , and (1,3) in different batches and get that they are all the same color. Thus, we know all the coins are the same color, so we can put them all in one pile. Note that some piles can be empty and those are denoted with an empty line.
In the second test case, there are three coins again. This time, we only get that (1,3) are the same and (1,2) and (2,3) are different. So, one possible scenario is that coins 1 and 3 are red and coin 2 is green.
In the last case, there are 6 coins. The case shows how to ask and receive answers for multiple pairs in one batch.