CF1463B.Find The Array

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an array [a1,a2,,an][a_1, a_2, \dots, a_n] such that 1ai1091 \le a_i \le 10^9 . Let SS be the sum of all elements of the array aa .

Let's call an array bb of nn integers beautiful if:

  • 1bi1091 \le b_i \le 10^9 for each ii from 11 to nn ;
  • for every pair of adjacent integers from the array (bi,bi+1)(b_i, b_{i + 1}) , either bib_i divides bi+1b_{i + 1} , or bi+1b_{i + 1} divides bib_i (or both);
  • 2i=1naibiS2 \sum \limits_{i = 1}^{n} |a_i - b_i| \le S .

Your task is to find any beautiful array. It can be shown that at least one beautiful array always exists.

输入格式

The first line contains one integer tt ( 1t10001 \le t \le 1000 ) — the number of test cases.

Each test case consists of two lines. The first line contains one integer nn ( 2n502 \le n \le 50 ).

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

输出格式

For each test case, print the beautiful array b1,b2,,bnb_1, b_2, \dots, b_n ( 1bi1091 \le b_i \le 10^9 ) on a separate line. It can be shown that at least one beautiful array exists under these circumstances. If there are multiple answers, print any of them.

输入输出样例

  • 输入#1

    4
    5
    1 2 3 4 5
    2
    4 6
    2
    1 1000000000
    6
    3 4 8 1 2 3

    输出#1

    3 3 3 3 3
    3 6
    1 1000000000
    4 4 8 1 3 3
首页