結果

問題 No.1266 7 Colors
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-29 16:52:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 918 ms / 3,000 ms
コード長 1,817 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 98,920 KB
最終ジャッジ日時 2024-10-05 18:20:21
合計ジャッジ時間 13,738 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,264 KB
testcase_01 AC 39 ms
53,280 KB
testcase_02 AC 39 ms
53,936 KB
testcase_03 AC 402 ms
84,172 KB
testcase_04 AC 771 ms
93,912 KB
testcase_05 AC 458 ms
85,980 KB
testcase_06 AC 754 ms
95,204 KB
testcase_07 AC 918 ms
98,920 KB
testcase_08 AC 752 ms
94,040 KB
testcase_09 AC 684 ms
91,056 KB
testcase_10 AC 657 ms
90,720 KB
testcase_11 AC 510 ms
86,928 KB
testcase_12 AC 587 ms
88,196 KB
testcase_13 AC 655 ms
89,456 KB
testcase_14 AC 476 ms
85,480 KB
testcase_15 AC 871 ms
98,448 KB
testcase_16 AC 653 ms
88,988 KB
testcase_17 AC 908 ms
98,260 KB
testcase_18 AC 265 ms
97,156 KB
testcase_19 AC 263 ms
94,312 KB
testcase_20 AC 265 ms
95,352 KB
testcase_21 AC 148 ms
79,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)


class UF_tree:
    def __init__(self, n):
        """ 0-indexed """
        self.root = [-1] * n
        self.components = n

    def find(self, x):
        if self.root[x] < 0:
            return x
        self.root[x] = self.find(self.root[x])
        return self.root[x]

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

    def merge(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if -self.root[x] > -self.root[y]:
            x, y = y, x
        self.root[y] += self.root[x]
        self.root[x] = y
        self.components -= 1
        return True

    def size(self, x):
        return -self.root[self.find(x)]


N, M, Q = map(int, input().split())
uf = UF_tree(7 * N)

S = [sum(1 << i for i, s in enumerate(input().rstrip()) if s == "1")
     for _ in range(N)]
for i, s in enumerate(S):
    i *= 7
    for j in range(7):
        k = (j + 1) % 7
        if (s >> j) & 1 and (s >> k) & 1:
            uf.merge(i + j, i + k)


edge = [[] for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edge[a].append(b)
    edge[b].append(a)
    for i in range(7):
        if (S[a] >> i) & 1 and (S[b] >> i) & 1:
            uf.merge(7 * a + i, 7 * b + i)


for _ in range(Q):
    f, x, y = map(int, input().split())
    x -= 1
    y -= 1
    if f == 1:
        S[x] |= (1 << y)
        l = (y - 1) % 7
        if (S[x] >> l) & 1:
            uf.merge(7 * x + y, 7 * x + l)
        r = (y + 1) % 7
        if (S[x] >> r) & 1:
            uf.merge(7 * x + y, 7 * x + r)
        for z in edge[x]:
            if (S[z] >> y) & 1:
                uf.merge(7 * x + y, 7 * z + y)
    else:
        print(uf.size(7 * x))
0