結果

問題 No.1266 7 Colors
ユーザー 👑 KazunKazun
提出日時 2020-10-24 01:05:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 3,000 ms
コード長 2,941 bytes
コンパイル時間 1,420 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 150,652 KB
最終ジャッジ日時 2024-07-21 14:38:53
合計ジャッジ時間 16,232 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,820 KB
testcase_01 AC 40 ms
52,884 KB
testcase_02 AC 39 ms
53,416 KB
testcase_03 AC 670 ms
98,932 KB
testcase_04 AC 935 ms
121,216 KB
testcase_05 AC 709 ms
100,040 KB
testcase_06 AC 914 ms
124,536 KB
testcase_07 AC 989 ms
130,292 KB
testcase_08 AC 914 ms
121,304 KB
testcase_09 AC 852 ms
112,400 KB
testcase_10 AC 834 ms
108,224 KB
testcase_11 AC 699 ms
101,240 KB
testcase_12 AC 796 ms
102,448 KB
testcase_13 AC 783 ms
105,132 KB
testcase_14 AC 672 ms
99,872 KB
testcase_15 AC 956 ms
131,552 KB
testcase_16 AC 779 ms
104,236 KB
testcase_17 AC 943 ms
129,140 KB
testcase_18 AC 589 ms
150,652 KB
testcase_19 AC 583 ms
131,000 KB
testcase_20 AC 597 ms
130,156 KB
testcase_21 AC 258 ms
91,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Union_Find():
    def __init__(self,N):
        """0,1,...,n-1を要素として初期化する.

        n:要素数
        """
        self.n=N
        self.parents=[-1]*N
        self.rank=[0]*N

    def find(self, x):
        """要素xの属している族を調べる.

        x:要素
        """
        V=[]
        while self.parents[x]>=0:
            V.append(x)
            x=self.parents[x]

        for v in V:
            self.parents[v]=x
        return x

    def union(self, x, y):
        """要素x,yを同一視する.

        x,y:要素
        """
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.rank[x]>self.rank[y]:
            self.parents[x] += self.parents[y]
            self.parents[y] = x
        else:
            self.parents[y] += self.parents[x]
            self.parents[x] = y

            if self.rank[x]==self.rank[y]:
                self.rank[y]+=1

    def size(self, x):
        """要素xの属している要素の数.

        x:要素
        """
        return -self.parents[self.find(x)]

    def same(self, x, y):
        """要素x,yは同一視されているか?

        x,y:要素
        """
        return self.find(x) == self.find(y)

    def members(self, x):
        """要素xが属している族の要素.
        ※族の要素の個数が欲しいときはsizeを使うこと!!

        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.parents) if x < 0]

    def group_count(self):
        """族の個数
        """
        return len(self.roots())

    def all_group_members(self):
        """全ての族の出力
        """
        return {r: self.members(r) for r in self.roots()}

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())
#================================================
import sys
imput=sys.stdin.readline
N,M,Q=map(int,input().split())
C=7

U=Union_Find(N*C)

S=["" for _ in range(N)]

for i in range(N):
    S[i]=list(map(int,input()))

    for j in range(C):
        if S[i][j]==S[i][(j+1)%C]==1:
            U.union(i*C+j,i*C+(j+1)%C)

E=[set() for _ in range(N)]
for _ in range(M):
    u,v=map(int,input().split())
    u-=1;v-=1
    E[u].add(v)
    E[v].add(u)

    for j in range(C):
        if S[u][j]==S[v][j]==1:
            U.union(u*C+j,v*C+j)

X=[]
for _ in range(Q):
    m,x,y=map(int,input().split())
    x-=1
    y-=1

    if m==1:
        for w in E[x]:
            if S[w][y]==1:
                U.union(x*C+y,w*C+y)

        if S[x][(y-1)%C]==1:
            U.union(x*C+y,x*C+(y-1)%C)

        if S[x][(y+1)%C]==1:
            U.union(x*C+y,x*C+(y+1)%C)

        S[x][y]=1
    else:
        X.append(U.size(x*C))

print(*X,sep="\n")
0