forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcan-i-win_1_AC.cpp
46 lines (43 loc) · 1.09 KB
/
can-i-win_1_AC.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
#include <vector>
using std::vector;
class Solution {
public:
bool canIWin(int maxChoosableInteger, int desiredTotal) {
int n = maxChoosableInteger;
int s = desiredTotal;
if (n >= s) {
return true;
}
if ((1 + n) * n / 2 < s) {
return false;
}
// 1 for win, -1 for lose, 0 for unknown
vector<int> dp(1 << n, 0);
bool res = search(0, n, s, dp);
dp.clear();
return res;
}
private:
bool search(int mask, int n, int s, vector<int> &dp) {
if (dp[mask] != 0) {
return dp[mask] == 1;
}
int i;
int i2;
for (i = n; i > 0; --i) {
i2 = (1 << i - 1);
if ((mask & i2) != 0) {
// Already used
continue;
}
// 1 lose -> win
// all win -> lose
if (i >= s || !search(mask | i2, n, s - i, dp)) {
dp[mask] = 1;
return true;
}
}
dp[mask] = -1;
return false;
}
};