-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathG1b.cpp
More file actions
39 lines (35 loc) · 935 Bytes
/
G1b.cpp
File metadata and controls
39 lines (35 loc) · 935 Bytes
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
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n = 10;
bool dp[n][n];
memset(dp, false, sizeof(dp));
for (int i = 2; i <= n-1; i++){
for (int j = 1; j < i; j++){
bool can_beat = false;
for (int k = 1; k <= 12 * j / 4; k++){
if (k >= i - j){
can_beat = true;
break;
}
if (dp[i-j][k]){
can_beat = true;
break;
}
}
dp[i][j] = !can_beat;
}
}
for (int i = 2; i <= n-1; i++){
for (int j = 1; j < i; j++){
dp[i][j] |= dp[i][j-1];
}
}
for (int i = 2; i <= n-1; i++){
for (int j = 1; j < i; j++){
cout << "i: " << i << " j: " << j << " dp[i][j]: " << dp[i][j] << "\n";
}
}
}