-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path918D. MADMAX.cpp
59 lines (46 loc) · 1.08 KB
/
918D. MADMAX.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
53
54
55
56
57
58
59
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
const int N = 101;
const int MAX_CHAR = 256;
int f[N][N][MAX_CHAR];
char ch[N][N];
vector<vector<int>> edges;
bool dp(int x, int y, int pre) {
if (f[x][y][pre]!=0)
return f[x][y][pre]==1 ? true : false;
int& ans = f[x][y][pre];
ans = -1;
for (auto nxt : edges[x])
if (ch[x][nxt]>=pre && !dp(y, nxt, ch[x][nxt])) {
ans = 1;
break;
}
// printf("%d %d %c %d\n", x, y, pre, ans);
return ans==1;
}
int main() {
int n, m;
ios::sync_with_stdio(false);
cin >> n >> m;
edges = vector<vector<int>>(n, vector<int>{});
char c;
for (int u,v,i=0; i<m; ++i) {
cin >> u >> v >> c;
--u, --v;
edges[u].push_back(v);
ch[u][v] = c;
}
for (int i=0; i<n; ++i){
string now;
for (int j=0; j<n; ++j)
if (dp(i, j, 0))
now.push_back('A');
else
now.push_back('B');
cout << now << endl;
}
return 0;
}