結果

問題 No.1266 7 Colors
ユーザー oevloevl
提出日時 2020-10-27 13:58:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,162 ms / 3,000 ms
コード長 1,680 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 112,864 KB
最終ジャッジ日時 2024-07-21 21:55:48
合計ジャッジ時間 17,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 36 ms
52,864 KB
testcase_03 AC 676 ms
87,948 KB
testcase_04 AC 1,067 ms
106,884 KB
testcase_05 AC 701 ms
89,788 KB
testcase_06 AC 1,111 ms
108,268 KB
testcase_07 AC 1,162 ms
112,320 KB
testcase_08 AC 1,086 ms
106,472 KB
testcase_09 AC 987 ms
99,800 KB
testcase_10 AC 935 ms
98,376 KB
testcase_11 AC 766 ms
91,492 KB
testcase_12 AC 807 ms
93,812 KB
testcase_13 AC 871 ms
96,296 KB
testcase_14 AC 736 ms
89,392 KB
testcase_15 AC 1,126 ms
112,864 KB
testcase_16 AC 852 ms
93,668 KB
testcase_17 AC 1,105 ms
112,292 KB
testcase_18 AC 474 ms
112,788 KB
testcase_19 AC 334 ms
110,720 KB
testcase_20 AC 341 ms
111,232 KB
testcase_21 AC 364 ms
80,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Unionfind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def leader (self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.leader(self.parents[x])
            return self.parents[x]

    def merge(self, x, y):
        x = self.leader(x)
        y = self.leader(y)
        if x == y:
            return
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def same(self, x):
        return self.leader(x) == self.leader(y)

    def size(self, x):
        return -self.parents[self.leader(x)]

n, m, q = map(int, input().split())
s = [input() for _ in range(n)]

uf = Unionfind(7 * n)
graph = [[] for _ in range(n)]
exist = [[s[i][j] == '1' for j in range(7)] for i in range(n)]

for i in range(n):
    for j in range(7):
        if exist[i][j] and exist[i][(j + 1) % 7]:
            uf.merge(7 * i + j, 7 * i + (j + 1) % 7)

for i in range(m):
    u, v = map(lambda x: int(x) - 1, input().split())
    for j in range(7):
        if exist[u][j] and exist[v][j]:
            uf.merge(7 * u + j, 7 * v + j)
    graph[u].append(v)
    graph[v].append(u)

for _ in range(q):
    t, x, y = map(lambda x: int(x) - 1, input().split())
    if t == 0:
        exist[x][y] = True
        if exist[x][(y + 6) % 7]:
            uf.merge(7 * x + (y + 6) % 7, 7 * x + y)
        if exist[x][(y + 8) % 7]:
            uf.merge(7 * x + y, 7 * x + (y + 8) % 7)
        for z in graph[x]:
            if exist[z][y]:
                uf.merge(7 * x + y, 7 * z + y)
    else:
        print(uf.size(7 * x))
0