This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define f first
#define s second
#define pii pair<ll, ll>
#define REP(i,n) for (int i = 0; i<n; ++i)
#define REP1(i,n) for (int i = 1; i<=n; ++i)
#define MX(a,b) a = max(a,b)
#define MN(a,b) a = min(a,b)
#define ALL(x) (x).begin(), (x).end()
#define SZ(x) (int)((x).size())
#define pb push_back
#ifdef BALBIT
#define bug(...) cerr<<"#"<<__LINE__<<": "<<#__VA_ARGS__<<"- ", _do(__VA_ARGS__)
template<typename T> void _do( T && x) {cerr<<x<<endl;}
template<typename T, typename ...S> void _do( T && x, S && ...y) {cerr<<x<<", "; _do(y...);}
#else
#define bug(...)
#define endl '\n'
#endif // BALBIT
signed main(){
ios::sync_with_stdio(0), cin.tie(0);
int t; cin>>t;
while (t--) {
int n,k; cin>>n>>k;
vector<int> a(n);
int x = 0;
REP(i,n) {
cin>>a[i]; x ^= a[i];
}
if( k == 0) {
cout<<0<<endl;
assert(0);
continue;
}
int lbit = x&-x;
if (k >= lbit && lbit != 0) {
cout<<1;
}else{
// now think...
// guess: only do k= 2^P ????
for (int e : a) {
for (int ar = 1; ar <= k && ar <= e; ar*=2) {
int xx = x ^ e ^ (e-ar);
int lb = xx & -xx;
if (ar < lb) {
assert(0);
cout<<1;
goto done;
}
}
}
cout<<0;
}
done:;
}
cout<<endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |