結果

問題 No.1266 7 Colors
ユーザー hir355hir355
提出日時 2020-10-23 23:23:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,449 ms / 3,000 ms
コード長 1,841 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,476 KB
最終ジャッジ日時 2024-07-21 13:20:05
合計ジャッジ時間 20,347 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 694 ms
88,004 KB
testcase_04 AC 1,268 ms
111,248 KB
testcase_05 AC 770 ms
90,948 KB
testcase_06 AC 1,319 ms
114,836 KB
testcase_07 AC 1,449 ms
120,080 KB
testcase_08 AC 1,331 ms
112,012 KB
testcase_09 AC 1,102 ms
103,604 KB
testcase_10 AC 1,109 ms
102,280 KB
testcase_11 AC 863 ms
93,636 KB
testcase_12 AC 945 ms
96,220 KB
testcase_13 AC 1,011 ms
98,472 KB
testcase_14 AC 738 ms
90,120 KB
testcase_15 AC 1,417 ms
121,476 KB
testcase_16 AC 1,058 ms
97,512 KB
testcase_17 AC 1,360 ms
118,756 KB
testcase_18 AC 598 ms
120,708 KB
testcase_19 AC 420 ms
118,504 KB
testcase_20 AC 414 ms
119,584 KB
testcase_21 AC 397 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n + 1)
        self.size = [1] * (n + 1)

    # 検索
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    # 併合
    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1

    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)


n, m, q = map(int, input().split())
s = [list(map(int, input())) for _ in range(n)]
uf = UnionFind(n * 7)
g = [[] for _ in range(n)]
for i in range(m):
    u, v = map(int, input().split())
    g[u - 1].append(v - 1)
    g[v - 1].append(u - 1)
for i in range(n * 7):
    v, c = i // 7, i % 7
    if s[v][c]:
        if s[v][(c + 1) % 7]:
            uf.unite(i, v * 7 + (c + 1) % 7)
        if s[v][(c - 1) % 7]:
            uf.unite(i, v * 7 + (c - 1) % 7)
        for node in g[v]:
            if s[node][c]:
                uf.unite(i, node * 7 + c)
for _ in range(q):
    t, x, y = map(int, input().split())
    x -= 1
    y -= 1
    if t == 1:
        s[x][y] = 1
        for node in g[x]:
            if s[node][y]:
                uf.unite(x * 7 + y, node * 7 + y)
        if s[x][(y + 1) % 7]:
            uf.unite(x * 7 + y, x * 7 + (y + 1) % 7)
        if s[x][(y - 1) % 7]:
            uf.unite(x * 7 + y, x * 7 + (y - 1) % 7)
    else:
        print(uf.size[uf.find(x * 7)])
0