結果

問題 No.1266 7 Colors
ユーザー H3PO4H3PO4
提出日時 2022-02-04 22:28:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,399 bytes
コンパイル時間 1,305 ms
コンパイル使用メモリ 87,024 KB
実行使用メモリ 125,100 KB
最終ジャッジ日時 2023-09-02 05:06:27
合計ジャッジ時間 26,407 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,248 KB
testcase_01 AC 77 ms
71,364 KB
testcase_02 AC 76 ms
71,132 KB
testcase_03 AC 872 ms
92,056 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 675 ms
122,024 KB
testcase_19 AC 490 ms
118,848 KB
testcase_20 AC 491 ms
120,296 KB
testcase_21 AC 449 ms
83,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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))
0