結果

問題 No.1266 7 Colors
ユーザー nagiss
提出日時 2020-10-24 02:51:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,419 ms / 3,000 ms
コード長 2,072 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-07-21 14:50:41
合計ジャッジ時間 21,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

class UnionFind:
    def __init__(self, N):
        self.p = [-1] * N

    def root(self, x):
        while self.p[x] >= 0:
            x = self.p[x]
        return x

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

    def unite(self, x, y):
        u = self.root(x)
        v = self.root(y)
        if u == v:
            return
        p = self.p
        if p[u] > p[v]:
            p[v] += p[u]
            p[u] = v
        else:
            p[u] += p[v]
            p[v] = u

    def count(self, x):
        return -self.p[self.root(x)]

def main():
    input = sys.stdin.buffer.readline
    N, M, Q = map(int, input().split())
    S = [int(input(), 2) for _ in range(N)]
    G = [[] for _ in range(N)]
    for i in range(M):
        u, v = map(int, input().split())
        u -= 1
        v -= 1
        G[u].append(v)
        G[v].append(u)
    uf = UnionFind(7 * N)
    for v, s in enumerate(S):
        ones = [i for i in range(7) if s>>(6-i)&1]
        v_offset = 7 * v
        if len(ones) >= 2:
            for o1, o2 in zip(ones, ones[1:]):
                if o1 + 1 == o2:
                    uf.unite(v_offset+o1, v_offset+o2)
            if ones[0] == 0 and ones[-1] == 6:
                uf.unite(v_offset, v_offset+6)
        for u in G[v]:
            for o in ones:
                if S[u]>>(6-o)&1:
                    uf.unite(v_offset+o, u*7+o)
    Ans = []
    for _ in range(Q):
        t, x, y = map(int, input().split())
        x -= 1
        if t == 1:
            v_offset = x * 7
            d = 7-y
            S[x] |= 1 << d
            v = v_offset + (y-1)
            d2 = (d-1)%7
            if S[x] >> d2 & 1:
                uf.unite(v, v_offset+y%7)
            d2 = (d+1)%7
            if S[x] >> d2 & 1:
                uf.unite(v, v_offset+(y-2)%7)
            for u in G[x]:
                if S[u]>>d&1:
                    u = u * 7 + y-1
                    uf.unite(v, u)
        else:
            ans = uf.count(x*7)
            Ans.append(ans)
    print("\n".join(map(str, Ans)))

main()
0