-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathUndirectedGraph.cpp
260 lines (217 loc) · 4.86 KB
/
UndirectedGraph.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#include <cstdio>
#include <algorithm>
#include <cstring>
//#define NDEBUG
#include <cassert>
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <cmath>
#include <cstdlib>
#include <array>
#include <type_traits>
#include <queue>
#include <stack>
#include <functional>
using namespace std;
#define int64 long long
#define repeat(x) for (auto repeat_var = 0; repeat_var < x; ++repeat_var)
#define for_inc(i, x) for (auto i = 0; i < x; ++i)
#define for_dec(i, x) for (auto i = x - 1; i >= 0; --i)
#define for_inc_range(i, x, y) for (auto i = x; i <= y; ++i)
#define for_dec_range(i, x, y) for (auto i = x; i >= y; --i)
#define fill0(x) memset(x, 0, sizeof(x))
#define INT_INF 2E9L
#define MOD 1000000007
void testGen() {
freopen("biginput1.txt", "w", stdout);
fclose(stdout);
}
class UndirectedGraph {
friend class UndirectedGraphEdgeMarker;
vector<vector<int>> adj;
// indexMap[u][i] = the index of the same edge in adj[v]
vector<vector<int>> indexMap;
vector<int> comp;
vector<int> color;
vector<int> deg;
bool ccBuilt = false;
int nEdge = 0;
int n, nComp;
bool _hasOddCycle = false;
void dfs(int u, int c) {
comp[u] = nComp;
color[u] = c;
for (auto &v: adj[u]) {
if (comp[v] == -1) {
dfs(v, 1 - c);
} else {
if (color[v] != 1 - c) {
_hasOddCycle = true;
}
}
}
}
public:
void init(int n) {
this->n = n;
adj.resize(n + 1);
indexMap.resize(n + 1);
deg.resize(n + 1);
for_inc_range(u, 1, n) {
adj[u].clear();
indexMap[u].clear();
}
nEdge = 0;
ccBuilt = false;
}
const vector<int> &getAdjacent(int u) const {
return adj[u];
}
void addEdge(int u, int v) {
assert(1 <= u && u <= n);
assert(1 <= v && v <= n);
adj[u].push_back(v);
adj[v].push_back(u);
indexMap[u].push_back((int)adj[v].size() - 1);
indexMap[v].push_back((int)adj[u].size() - 1);
nEdge++;
deg[u]++;
deg[v]++;
ccBuilt = false;
}
int getDeg(int u) const {
return deg[u];
}
int getSize() const {
return n;
}
int getNumEdges() const {
return nEdge;
}
// Find connected components and detect odd cycle
void buildCC() {
ccBuilt = true;
comp.resize(n + 1);
fill(comp.begin(), comp.end(), -1);
color.resize(n + 1);
nComp = 0;
_hasOddCycle = false;
for_inc_range(u, 1, n) {
if (comp[u] == -1) {
nComp++;
dfs(u, 0);
}
}
}
bool hasOddCycle() {
assert(ccBuilt);
return _hasOddCycle;
}
int getComponent(int u) {
assert(ccBuilt);
return comp[u];
}
int getNumberOfComponents() {
assert(ccBuilt);
return nComp;
}
};
class UndirectedGraphEdgeMarker {
UndirectedGraph g;
vector<vector<bool>> flag;
int n;
void set(int u, int i, bool b) {
assert(i >= 0 && i < g.getAdjacent(u).size());
flag[u][i] = b;
int v = g.getAdjacent(u)[i];
flag[v][g.indexMap[u][i]] = b;
}
public:
UndirectedGraphEdgeMarker(const UndirectedGraph &g): g(g) {
n = g.getSize();
flag.resize(n + 1);
for_inc_range(u, 1, n) {
flag[u].resize(g.getAdjacent(u).size());
}
}
void mark(int u, int i) {
set(u, i, true);
}
void unmark(int u, int i) {
set(u, i, false);
}
bool test(int u, int i) const {
assert(i >= 0 && i < g.getAdjacent(u).size());
return flag[u][i];
}
};
// Example problem: CF263_D
struct Equation {
int l, r;
};
int n, k;
Equation getEquation(int r, int c) {
if (r + c > n + 1) {
return getEquation(n - c + 1, n - r + 1);
}
if (r > c) {
return getEquation(c, r);
}
int diag = c - r + 1;
Equation e;
e.l = diag;
e.r = diag + 2 * (r - 1);
if (e.l <= 2) {
e.l = 0;
} else e.l -= 2;
return e;
}
UndirectedGraph sameGraph, compGraph;
vector<vector<int>> diffEdge;
int main() {
//freopen("input2.txt", "r", stdin);
cin >> n >> k;
int a, b, c; string s;
diffEdge.resize(n + 2);
sameGraph.init(n + 1);
repeat(k) {
cin >> a >> b >> s;
c = s[0] == 'x';
Equation e = getEquation(a, b);
int u = e.l == 0 ? n + 1 : e.l;
int v = e.r == 0 ? n + 1 : e.r;
if (c == 0) {
diffEdge[u].push_back(v);
diffEdge[v].push_back(u);
} else {
sameGraph.addEdge(u, v);
}
}
sameGraph.buildCC();
compGraph.init(sameGraph.getNumberOfComponents());
for_inc_range(u, 1, n + 1) {
for (auto &v: diffEdge[u]) {
int cu = sameGraph.getComponent(u);
int cv = sameGraph.getComponent(v);
if (cu == cv) {
cout << 0;
return 0;
} else {
compGraph.addEdge(cu, cv);
}
}
}
compGraph.buildCC();
if (compGraph.hasOddCycle()) {
cout << 0;
return 0;
}
int ret = 1;
for_inc_range(i, 1, compGraph.getNumberOfComponents() - 1) {
ret = (ret * 2) % MOD;
}
cout << ret << endl;
return 0;
}