-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCan_I_Win.cpp
36 lines (36 loc) · 1.2 KB
/
Can_I_Win.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
class Solution {
bool canIWin(int maxChoosableInteger, int desiredTotal, int mask, vector<bool>& visited, vector<bool>& dp) {
if(desiredTotal <= 0) {
return false;
}
if(visited[mask]) {
return dp[mask];
}
bool canWin = false;
for(int i = 1; i <= maxChoosableInteger; i++) {
if(!(mask & (1 << i))) {
canWin |= !canIWin(maxChoosableInteger, desiredTotal - i, mask | (1 << i), visited, dp);
if(canWin) {
break;
}
}
}
visited[mask] = true;
return dp[mask] = canWin;
}
public:
bool canIWin(int maxChoosableInteger, int desiredTotal) {
if(maxChoosableInteger >= desiredTotal) {
return true;
}
int totalPossible = (maxChoosableInteger * (maxChoosableInteger + 1)) / 2;
if(totalPossible < desiredTotal) {
return false;
}
int mask = 0;
const int maxMask = 1 << (maxChoosableInteger + 1);
vector<bool> dp(maxMask, false);
vector<bool> visited(maxMask, false);
return canIWin(maxChoosableInteger, desiredTotal, mask, visited, dp);
}
};