-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgrundy_numbers.cpp
More file actions
81 lines (74 loc) · 1.78 KB
/
grundy_numbers.cpp
File metadata and controls
81 lines (74 loc) · 1.78 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* Game Theory : Grundy Numbers
* Link: All 4 sets of GeeksforGeeks
* Question : https://www.hackerearth.com/problem/algorithm/strong-contender-5b885a78/
*
*
* */
#include<bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#define mkp(a,b) make_pair(a,b)
#define PI 3.14159265359
#define mset(arr,val) memset(arr,val,sizeof arr)
#define eb emplace_back
#define mod (long long)(1e9+7)
#define FILE_READ freopen("input.txt","r",stdin)
#define FILE_WRITE freopen("output.txt","w",stdout)
using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef unsigned long ul;
typedef pair<ll,ll> pll;
typedef pair<int,int> pii;
typedef long double ld;
typedef tree<ll, null_type, less<ll>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
const int N=(int)1e5;
int grundy[N+1];
int getGrundy(int num) {
if(num<=N) return grundy[num];
return getGrundy((int)sqrt(num))+1;
}
ll getMinReq(int nimsum) {
ll curr=2;
int sumSoFar=2;
while(sumSoFar++<nimsum) {
curr=curr*curr;
}
return curr;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
// FILE_READ;
// FILE_WRITE;
grundy[0]=0;
grundy[1]=1;
for(int i=2;i<=N;++i) {
grundy[i]=grundy[(int)sqrt(i)]+1;
}
// cout<<getMinReq(5);
// return 0;
int t;
cin>>t;
while(t--) {
int n;
cin >> n;
int nimsum = 0;
for (int i = 0; i < n; ++i) {
int u;
cin >> u;
int gr=getGrundy(u);
nimsum ^= gr;
}
if(nimsum==1) {
cout<<"1\n";
} else if(nimsum==0) {
cout<<"0\n";
} else {
cout<<getMinReq(nimsum)<<"\n";
}
}
return 0;
}