-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDay7.cpp
52 lines (46 loc) · 910 Bytes
/
Day7.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
48
49
50
51
52
// BrainGame
// { Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution{
public:
bool brainGame(vector<int>nums) {
int dp[1005] = {0};
dp[1] = dp[2] = 0;
for(int i = 3; i <= 1000; i++)
{
for(int j = 2; j * j <= i; j++)
{
if(i % j == 0)
{
dp[i] = max(dp[i], 1 + max(dp[i / j], dp[j]));
}
}
}
// Game of Nim, if xor is positive player 1 wins
int x = 0;
for(auto num: nums)
{
x = x xor dp[num];
}
return x > 0;
}
};
// { Driver Code Starts.
int main(){
int tc;
cin >> tc;
while(tc--){
int n;
cin >> n;
vector<int>nums(n);
for(int i = 0; i < n; i++)cin >> nums[i];
Solution ob;
bool ans = ob.brainGame(nums);
if(ans)
cout << "A\n";
else cout << "B\n";
}
return 0;
} // } Driver Code Ends