結果

問題 No.1266 7 Colors
ユーザー ayaoniayaoni
提出日時 2020-10-23 23:36:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,319 ms / 3,000 ms
コード長 2,652 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 127,104 KB
最終ジャッジ日時 2024-07-21 13:33:08
合計ジャッジ時間 17,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 AC 40 ms
52,992 KB
testcase_02 AC 40 ms
52,864 KB
testcase_03 AC 601 ms
89,196 KB
testcase_04 AC 1,099 ms
114,560 KB
testcase_05 AC 581 ms
90,240 KB
testcase_06 AC 1,162 ms
119,424 KB
testcase_07 AC 1,228 ms
125,440 KB
testcase_08 AC 1,073 ms
116,224 KB
testcase_09 AC 926 ms
106,240 KB
testcase_10 AC 897 ms
103,552 KB
testcase_11 AC 734 ms
93,824 KB
testcase_12 AC 785 ms
97,664 KB
testcase_13 AC 839 ms
99,712 KB
testcase_14 AC 553 ms
90,088 KB
testcase_15 AC 1,302 ms
127,104 KB
testcase_16 AC 820 ms
97,920 KB
testcase_17 AC 1,319 ms
124,288 KB
testcase_18 AC 365 ms
126,408 KB
testcase_19 AC 324 ms
123,520 KB
testcase_20 AC 324 ms
124,672 KB
testcase_21 AC 163 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


class UnionFind:
    def __init__(self,n):
        self.par = [i for i in range(n+1)]  # 親のノード番号
        self.rank = [0]*(n+1)
        self.X = [1]*(n+1)

    def find(self,x):  # xの根のノード番号
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def same_check(self,x,y):  # x,yが同じグループか否か
        return self.find(x) == self.find(y)

    def unite(self,x,y):  # x,yの属するグループの併合
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            x,y = y,x
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1
        self.par[y] = x
        self.X[x] += self.X[y]


N,M,Q = MI()
A = [[]]
for i in range(N):
    A.append([0]+LI2())
# print(A)
Graph = [[] for _ in range(N+1)]
for _ in range(M):
    u,v = MI()
    Graph[v].append(u)
    Graph[u].append(v)

UF = UnionFind(7*N)
for i in range(1,N+1):
    for j in range(1,8):
        x = 7*(i-1)+j
        if A[i][j] == 1:
            for k in Graph[i]:
                if A[k][j] == 1:
                    UF.unite(x,7*(k-1)+j)

for i in range(1,N+1):
    for j in range(1,7):
        x = 7*(i-1)+j
        if A[i][j] == A[i][j+1] == 1:
            UF.unite(x,7*(i-1)+j+1)
    if A[i][1] == A[i][7] == 1:
        UF.unite(7*(i-1)+1,7*(i-1)+7)

for _ in range(Q):
    r,x,y = MI()
    if r == 1:
        A[x][y] = 1
        if 1 < y < 7:
            if A[x][y-1] == 1:
                UF.unite(7*(x-1)+y,7*(x-1)+y-1)
            if A[x][y+1] == 1:
                UF.unite(7*(x-1)+y,7*(x-1)+y+1)
        elif y == 1:
            if A[x][y+1] == 1:
                UF.unite(7*(x-1)+y,7*(x-1)+y+1)
            if A[x][7] == 1:
                UF.unite(7*(x-1)+y,7*(x-1)+7)
        elif y == 7:
            if A[x][y-1] == 1:
                UF.unite(7*(x-1)+y,7*(x-1)+y-1)
            if A[x][1] == 1:
                UF.unite(7*(x-1)+y,7*(x-1)+1)
        for k in Graph[x]:
            if A[k][y] == 1:
                UF.unite(7*(x-1)+y,7*(k-1)+y)
    else:
        print(UF.X[UF.find(7*(x-1)+1)])
0