結果
問題 | No.1266 7 Colors |
ユーザー | NatsubiSogan |
提出日時 | 2020-10-24 00:49:49 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,433 ms / 3,000 ms |
コード長 | 1,598 bytes |
コンパイル時間 | 392 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 131,852 KB |
最終ジャッジ日時 | 2024-07-21 14:33:51 |
合計ジャッジ時間 | 21,370 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,352 KB |
testcase_01 | AC | 40 ms
52,608 KB |
testcase_02 | AC | 39 ms
52,224 KB |
testcase_03 | AC | 820 ms
89,892 KB |
testcase_04 | AC | 1,433 ms
120,308 KB |
testcase_05 | AC | 877 ms
92,916 KB |
testcase_06 | AC | 1,256 ms
120,988 KB |
testcase_07 | AC | 1,314 ms
127,632 KB |
testcase_08 | AC | 1,297 ms
118,764 KB |
testcase_09 | AC | 1,186 ms
110,264 KB |
testcase_10 | AC | 1,128 ms
105,580 KB |
testcase_11 | AC | 921 ms
94,752 KB |
testcase_12 | AC | 1,064 ms
99,388 KB |
testcase_13 | AC | 1,083 ms
101,844 KB |
testcase_14 | AC | 882 ms
92,444 KB |
testcase_15 | AC | 1,361 ms
129,528 KB |
testcase_16 | AC | 1,078 ms
99,784 KB |
testcase_17 | AC | 1,342 ms
127,040 KB |
testcase_18 | AC | 548 ms
131,852 KB |
testcase_19 | AC | 407 ms
128,640 KB |
testcase_20 | AC | 407 ms
129,024 KB |
testcase_21 | AC | 405 ms
79,600 KB |
ソースコード
#Union-Find class UnionFind(): def __init__(self, n): self.n = n self.par = [-1] * n def find(self, x): if self.par[x] < 0: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def unite(self, x, y): p = self.find(x) q = self.find(y) if p == q: return None if self.par[p] > self.par[q]: p, q = q, p self.par[p] += self.par[q] self.par[q] = p def same(self, x, y): return self.find(x) == self.find(y) def size(self, x): return -self.par[self.find(x)] n, m, q = map(int, input().split()) s = [list(input()) for i in range(n)] UF = UnionFind(n * 7) for i in range(n): for j in range(7): if s[i][j] == "1" and s[i][(j + 1) % 7] == "1": UF.unite(i * 7 + j, i * 7 + (j + 1) % 7) edges = [[] for i in range(n)] for i in range(m): x, y = map(int, input().split()) x -= 1 y -= 1 edges[x].append(y) edges[y].append(x) for j in range(7): if s[x][j] == "1" and s[y][j] == "1": UF.unite(x * 7 + j, y * 7 + j) for i in range(q): qu, a, b = map(int, input().split()) a -= 1 b -= 1 if qu == 1: s[a][b] = "1" if s[a][(b - 1) % 7] == "1": UF.unite(a * 7 + (b - 1) % 7, a * 7 + b) if s[a][(b + 1) % 7] == "1": UF.unite(a * 7 + (b + 1) % 7, a * 7 + b) for v in edges[a]: if s[v][b] == "1": UF.unite(a * 7 + b, v * 7 + b) else: print(UF.size(a * 7))