Codeforces-SolutionsA/Codes/1991 B - AND Reconstruction/1991B.cpp

58 lines
1.2 KiB
C++

#include <bits/stdc++.h>
using namespace std;
#ifdef ONLINE_JUDGE
#define dbg(...)
#else
#include "Assets/debug.h"
#endif
#define int long long
#define ll long long
#define endl '\n'
#define ff first
#define ss second
#define ins insert
#define pb push_back
#define ppb pop_back
#define sz(x) (int)(x).size()
#define all(x) x.begin(), x.end()
#define rep(i,a,b) for(int i=a; i<b; ++i)
#define rrep(i,a,b) for(int i=a; i>=b; --i)
#define yn(f) f? cout<<"YES\n":cout<<"NO\n"
#define FAST (ios_base::sync_with_stdio(false), cin.tie(nullptr));
ll pow(ll x,ll y,ll m=1e9+7) {ll ans=1;x%=m;while(y){if(y&1)ans=(ans*x)%m;x=(x*x)%m;y>>=1;}return ans;}
void solve()
{
int n;
cin >> n;
vector<int> b(n-1);
vector<int> a(n);
rep(i, 0, n-1) cin >> b[i];
a[0] = b[0];
rep(i, 1, n-1) a[i] = b[i-1] | b[i];
a[n-1] = b[n-2];
rep(i,1,n)
{
int x=a[i]&a[i-1];
int y=b[i-1];
if(x!=y)
{
cout<<-1<<endl;
return;
}
}
rep(i, 0, n) cout << a[i] << " ";
cout << endl;
}
signed main()
{
FAST;
int TCS = 1;
cin >> TCS;
for (int TC = 1; TC <= TCS; ++TC)
{
// cout<<"Case "<<TC<<": ";
solve();
}
}