-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2sat.sublime-snippet
60 lines (43 loc) · 950 Bytes
/
2sat.sublime-snippet
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
<snippet>
<content><![CDATA[
struct SAT
{
int n;
SCC sol;
vector<int> ans;
SAT(int _n): n(_n), sol(SCC(_n * 2)) {}
int c(int x) {
if (x < 0) return n - x;
return x;
}
int g(int x) {
if (x > n) x -= n;
return x;
}
void add(int x, int y) {
sol.add(c(-x), c(y));
sol.add(c(-y), c(x));
}
int solve() {
sol.find();
for (int i = 1; i <= n; i++) {
if (sol.which[i] == sol.which[i + n]) {
return 0;
}
}
ans = vector<int>(n + 1, -1);
for (int i = 0; i < sol.cnt; i++) {
for (int j : sol.scc[i]) {
if (ans[g(j)] != -1) continue;
ans[g(j)] = (j <= n);
}
}
return 1;
}
};
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>2sat</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>