CF1901C.Add, Divide and Floor

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given an integer array a1,a2,,ana_1, a_2, \dots, a_n ( 0ai1090 \le a_i \le 10^9 ). In one operation, you can choose an integer xx ( 0x10180 \le x \le 10^{18} ) and replace aia_i with ai+x2\lfloor \frac{a_i + x}{2} \rfloor ( y\lfloor y \rfloor denotes rounding yy down to the nearest integer) for all ii from 11 to nn . 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 nn , then print the chosen xx for each operation. If there are multiple answers, print any of them.

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of testcases.

The first line of each testcase contains a single integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ).

The second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 0ai1090 \le a_i \le 10^9 ).

The sum of nn over all testcases doesn't exceed 21052 \cdot 10^5 .

输出格式

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 nn , then print the chosen xx for each operation in the next line. If there are multiple answers, print any of them.

输入输出样例

  • 输入#1

    4
    1
    10
    2
    4 6
    6
    2 1 2 1 2 1
    2
    0 32

    输出#1

    0
    2
    2 5
    1
    1
    6

说明/提示

In the first testcase, all elements are already equal, so 00 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 22 operations. There are multiple answers, let's consider the answer sequence [2,5][2, 5] . After applying an operation with x=2x = 2 , the array becomes [4+22,6+22]=[3,4][\lfloor \frac{4 + 2}{2} \rfloor, \lfloor \frac{6 + 2}{2} \rfloor] = [3, 4] . After applying an operation with x=5x = 5 after that, the array becomes [3+52,4+52]=[4,4][\lfloor \frac{3 + 5}{2} \rfloor, \lfloor \frac{4 + 5}{2} \rfloor] = [4, 4] . Both elements are the same, so we are done.

In the last testcase, you can't make less than 66 operations. Since 66 is greater than nn , you don't have to print them. One possible answer sequence is [0,0,0,0,0,0][0, 0, 0, 0, 0, 0] . We are just dividing the second element by 22 every time and not changing the first element.

首页