-
Notifications
You must be signed in to change notification settings - Fork 0
/
B.cpp
47 lines (46 loc) · 893 Bytes
/
B.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include<bits/stdc++.h>
#include<cmath>
using namespace std;
#define fastio ios_base::sync_with_stdio(false);cin.tie(NULL)
int main()
{
fastio;
long long t,n,i,ara[55],s,sb;
cin>>t;
while(t--)
{
s=0;
sb=0;
cin>>n;
for(i=0;i<n;i++)
{
cin>>ara[i];
if(i%2==0)
s+=ara[i];
else
sb+=ara[i];
}
if(s>=sb)
{
for(i=0;i<n;i++)
{
if(i%2==0)
cout<<ara[i]<<" ";
else
cout<<1<<" ";
}
}
else
{
for(i=0;i<n;i++)
{
if(i%2==1)
cout<<ara[i]<<" ";
else
cout<<1<<" ";
}
}
cout<<"\n";
}
return 0;
}