-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathclosing.cpp
100 lines (90 loc) · 2.69 KB
/
closing.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
#include <iostream>
#include <string>
#include <utility>
#include <sstream>
#include <algorithm>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <fstream>
#include <cassert>
#include <unordered_set>
using namespace std;
#define FOR(i, a, b) for (int i=a; i<(b); i++)
#define F0R(i, a) for (int i=0; i<(a); i++)
#define FORd(i,a,b) for (int i = (b)-1; i >= a; i--)
#define F0Rd(i,a) for (int i = (a)-1; i >= 0; i--)
#define SORT(vec) sort(vec.begin(), vec.end())
#define INF 1000000010
#define LL_INF 4500000000000000000
#define LSOne(S) (S & (-S))
#define EPS 1e-9
#define A first
#define B second
#define mp make_pair
#define pb push_back
#define PI acos(-1.0)
#define ll long long
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
class UnionFind { // OOP style
private:
vi p, rank, setSize; // remember: vi is vector<int>
int numSets;
public:
UnionFind(int N) {
setSize.assign(N, 1); numSets = N; rank.assign(N, 0);
p.assign(N, 0); for (int i = 0; i < N; i++) p[i] = i; }
int findSet(int i) { return (p[i] == i) ? i : (p[i] = findSet(p[i])); }
bool isSameSet(int i, int j) { return findSet(i) == findSet(j); }
void unionSet(int i, int j) {
if (!isSameSet(i, j)) { numSets--;
int x = findSet(i), y = findSet(j);
// rank is used to keep the tree short
if (rank[x] > rank[y]) { p[y] = x; setSize[x] += setSize[y]; }
else { p[x] = y; setSize[y] += setSize[x];
if (rank[x] == rank[y]) rank[y]++; } } }
int numDisjointSets() { return numSets; }
int sizeOfSet(int i) { return setSize[findSet(i)]; }
};
int main() {
freopen("closing.in", "r", stdin);
freopen("closing.out", "w", stdout);
int n, m; cin >> n >> m;
vi adjList[n+10];
F0R(i, m) {
int x, y; cin >> x >> y;
adjList[x].push_back(y);
adjList[y].push_back(x);
}
bool seen[n+10]; memset(seen, false, sizeof seen);
vi order;
F0R(i, n) {
int x; cin >> x;
order.push_back(x);
}
vector<bool> good;
reverse(order.begin(), order.end());
UnionFind UF(n);
int ctr = n;
for (int farm : order) {
seen[farm] = true;
for (int adj : adjList[farm]) {
if (seen[adj]) UF.unionSet(adj-1, farm-1);
}
good.push_back(UF.numDisjointSets() == ctr--);
}
reverse(good.begin(), good.end());
for (bool ans : good) {
if (ans) cout << "YES" << endl;
else cout << "NO" << endl;
}
return 0;
}