結果
問題 | No.1266 7 Colors |
ユーザー | H3PO4 |
提出日時 | 2022-02-04 22:28:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,399 bytes |
コンパイル時間 | 352 ms |
コンパイル使用メモリ | 82,604 KB |
実行使用メモリ | 121,812 KB |
最終ジャッジ日時 | 2024-06-11 12:06:04 |
合計ジャッジ時間 | 18,515 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,864 KB |
testcase_01 | AC | 35 ms
52,992 KB |
testcase_02 | AC | 38 ms
52,480 KB |
testcase_03 | AC | 669 ms
89,720 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 589 ms
121,812 KB |
testcase_19 | AC | 405 ms
117,632 KB |
testcase_20 | AC | 418 ms
118,144 KB |
testcase_21 | AC | 368 ms
80,988 KB |
ソースコード
class UnionFind: __slots__ = ["n", "parent", "height", "size"] def __init__(self, n): self.n = n self.parent = [i for i in range(n)] self.height = [1] * n self.size = [1] * n def find(self, x): if self.parent[x] == x: return x else: self.parent[x] = self.find(self.parent[x]) return self.parent[x] def unite(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.height[x] < self.height[y]: self.parent[x] = y self.size[y] += self.size[x] else: self.parent[y] = x self.size[x] += self.size[y] if self.height[x] == self.height[y]: self.height[x] += 1 def issame(self, x, y): return self.find(x) == self.find(y) def group_size(self, x): return self.size[self.find(x)] def group_members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parent) if i == x] def group_count(self): return len(self.roots()) N, M, Q = map(int, input().split()) uf = UnionFind(7 * N) pair2int = lambda i, n: 7 * i + n colors = [[s == "1" for s in input()] for _ in range(N)] G = [[] for _ in range(N)] for _ in range(M): u, v = (int(x) - 1 for x in input().split()) G[u].append(v) G[v].append(u) for i in range(N): for a in range(7): b = (a + 1) % 7 if colors[i][a] == colors[i][b] == 1: uf.unite(pair2int(i, a), pair2int(i, b)) for i in range(N): for a in range(7): if not colors[i][a]: continue for j in G[i]: if colors[j][a]: uf.unite(pair2int(i, a), pair2int(j, a)) for _ in range(Q): q, x, y = map(int, input().split()) x -= 1 if q == 1: y -= 1 colors[x][y] = 1 l = (y - 1) % 7 r = (y + 1) % 7 if colors[x][l] == 1: uf.unite(pair2int(x, l), pair2int(x, y)) if colors[x][r] == 1: uf.unite(pair2int(x, y), pair2int(x, r)) for j in G[x]: if colors[j][y] == 1: uf.unite(pair2int(x, y), pair2int(j, y)) else: assert q == 2 print(uf.group_size(0))