← Home
write a go solution for Description:
You are given an integer array a_1,a_2,...,a_n (0<=a_i<=10^9). In one operation, you can choose an integer x (0<=x<=10^18) and replace a_i with lfloora_i+x/2rfloor (lflooryrfloor denotes rounding y down to the nearest integer) for all i from 1 to n. Pay attention to the fact that all elements of the array are affected on each operation.

Print the smallest number of operations required to make all elements of the array equal.

If the number of operations is less than or equal to n, then print the chosen x for each operation. If there are multiple answers, print any of them.

Input Format:
The first line contains a single integer t (1<=t<=10^4) — the number of testcases.

The first line of each testcase contains a single integer n (1<=n<=2*10^5).

The second line contains n integers a_1,a_2,...,a_n (0<=a_i<=10^9).

The sum of n over all testcases doesn't exceed 2*10^5.

Output Format:
For each testcase, print the smallest number of operations required to make all elements of the array equal.

If the number of operations is less than or equal to n, then print the chosen x for each operation in the next line. If there are multiple answers, print any of them.

Note:
In the first testcase, all elements are already equal, so 0 operations are required. It doesn't matter if you print an empty line afterwards or not.

In the second testcase, you can't make less than 2 operations. There are multiple answers, let's consider the answer sequence [2,5]. After applying an operation with x=2, the array becomes [lfloor4+2/2rfloor,lfloor6+2/2rfloor]=[3,4]. After applying an operation with x=5 after that, the array becomes [lfloor3+5/2rfloor,lfloor4+5/2rfloor]=[4,4]. Both elements are the same, so we are done.

In the last testcase, you can't make less than 6 operations. Since 6 is greater than n, you don't have to print them. One possible answer sequence is [0,0,0,0,0,0]. We are just dividing the second element by 2 every time and not changing the first element.. Output only the code with no comments, explanation, or additional text.