-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzb_cutting.cpp
More file actions
131 lines (101 loc) · 1.92 KB
/
Copy pathzb_cutting.cpp
File metadata and controls
131 lines (101 loc) · 1.92 KB
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
#include <cstdio>
#include <vector>
#include <set>
#include <stack>
#include <algorithm>
using namespace std;
int n;
int m;
int k;
int const maxVertexNumber = 50000 + 2;
int const maxEdgeNumber = 100000 + 2;
set<int> vertexEdges[maxVertexNumber];
struct Command {
enum Type {
ASK
, CUT
} type;
int start;
int end;
};
stack<Command> cmdStack;
stack<bool> answer;
int parent[maxVertexNumber];
int rank[maxVertexNumber];
void makeSet(int const v) {
parent[v] = v;
rank[v] = 0;
}
int findSet(int const v) {
if (v == parent[v]) {
return v;
}
return parent[v] = findSet(parent[v]);
}
void unionSets(int first, int second) {
first = findSet(first);
second = findSet(second);
if (first != second) {
if (rank[first] < rank[second]) {
swap(first, second);
}
parent[second] = first;
if (rank[first] == rank[second]) {
rank[first]++;
}
}
}
int main() {
FILE* in = fopen("cutting.in", "r");
fscanf(in, "%d %d %d", &n, &m, &k);
int u;
int v;
for (int i = 0; i < m; i++) {
fscanf(in, "%d %d", &u, &v);
vertexEdges[u].insert(v);
vertexEdges[v].insert(u);
}
char buf[5];
for (int i = 0; i < k; i++) {
fscanf(in, "%s %d %d", buf, &u, &v);
Command cmd;
cmd.start = u - 1;
cmd.end = v - 1;
if (buf[0] == 'c') {
if (
vertexEdges[u].find(v)
== vertexEdges[u].end()
) {
continue;
}
cmd.type = Command::CUT;
} else {
cmd.type = Command::ASK;
}
cmdStack.push(cmd);
}
fclose(in);
for (int i = 0; i < n; i++) {
makeSet(i);
}
while (!cmdStack.empty()) {
Command curCmd = cmdStack.top();
if (curCmd.type == Command::ASK) {
answer.push(findSet(curCmd.start) == findSet(curCmd.end));
} else {
unionSets(curCmd.start, curCmd.end);
}
cmdStack.pop();
}
FILE* out = fopen("cutting.out", "w");
while (!answer.empty()) {
if (answer.top()) {
fprintf(out, "YES\n");
} else {
fprintf(out, "NO\n");
}
answer.pop();
}
fclose(out);
return 0;
}