-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathl.py
58 lines (47 loc) · 1.52 KB
/
l.py
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
import sys
input = sys.stdin.readline
class union_find:
def __init__(self, n):
self.__parent_or_size = [-1] * n
def find(self, x):
if self.__parent_or_size[x] < 0:
return x
else:
self.__parent_or_size[x] = self.find(self.__parent_or_size[x])
return self.__parent_or_size[x]
def same(self, x, y):
return self.find(x) == self.find(y)
def size(self, x):
return -self.__parent_or_size[self.find(x)]
def union(self, x, y):
x = self.find(x)
y = self.find(y)
if x == y:
return False
if self.size(x) < self.size(y):
x, y = y, x
self.__parent_or_size[x] += self.__parent_or_size[y]
self.__parent_or_size[y] = x
return True
def main():
h, w = map(int, input().split())
uf = union_find(h * w)
painted = [False for _ in range(h * w)]
adj = ((0, 1), (1, 0), (0, -1), (-1, 0))
q = int(input())
for _ in range(q):
t, *a = [int(i) - 1 for i in input().split()]
if t == 0:
i, j = a
painted[i * w + j] = True
for di, dj in adj:
ti = i + di
tj = j + dj
if 0 <= ti < h and 0 <= tj < w and painted[ti * w + tj]:
uf.union(i * w + j, ti * w + tj)
else:
i1, j1, i2, j2 = a
print("Yes" if painted[i1 * w + j1]
and uf.same(i1 * w + j1, i2 * w + j2) else "No")
if __name__ == "__main__":
main()