結果

問題 No.1266 7 Colors
ユーザー titiatitia
提出日時 2020-10-23 23:49:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,678 ms / 3,000 ms
コード長 1,859 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 129,372 KB
最終ジャッジ日時 2024-07-21 13:51:23
合計ジャッジ時間 30,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 2,118 ms
95,264 KB
testcase_04 AC 1,333 ms
118,944 KB
testcase_05 AC 1,908 ms
98,048 KB
testcase_06 AC 1,409 ms
123,908 KB
testcase_07 AC 1,390 ms
129,372 KB
testcase_08 AC 1,420 ms
120,448 KB
testcase_09 AC 1,374 ms
110,600 KB
testcase_10 AC 1,366 ms
107,828 KB
testcase_11 AC 1,583 ms
100,120 KB
testcase_12 AC 1,452 ms
100,924 KB
testcase_13 AC 1,473 ms
104,156 KB
testcase_14 AC 1,699 ms
95,740 KB
testcase_15 AC 1,318 ms
128,712 KB
testcase_16 AC 1,433 ms
101,020 KB
testcase_17 AC 1,391 ms
126,492 KB
testcase_18 AC 796 ms
127,592 KB
testcase_19 AC 933 ms
126,336 KB
testcase_20 AC 947 ms
126,336 KB
testcase_21 AC 2,678 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,Q=map(int,input().split())

ANS=[[0]*7 for i in range(N)]
S=[list(map(int,list(input().strip()))) for i in range(N)]
E=[[] for i in range(N)]

for i in range(M):
    x,y=map(int,input().split())
    x-=1
    y-=1
    E[x].append(y)
    E[y].append(x)
    
# UnionFind

Group = [i for i in range(N*7)] # グループ分け
Nodes = [1]*(N*7) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)


for i in range(N):
    for j in range(7):
        if S[i][j-1]==1 and S[i][j]==1:
            Union(i*7+(j-1)%7,i*7+j)

for i in range(N):
    for to in E[i]:
        for j in range(7):
            if S[i][j]==1 and S[to][j]==1:
                Union(i*7+j,to*7+j)

for i in range(Q):
    q,x,y=map(int,input().split())
    if q==1:
        x-=1
        y-=1
        S[x][y]=1

        Q=[x*7+y]

        while Q:
            town=Q.pop()
            x,y=divmod(town,7)
            town=find(town)

            if S[x][(y+1)%7]==1 and find(x*7+(y+1)%7)!=town:
                Union(x*7+y,x*7+(y+1)%7)
                Q.append(x*7+(y+1)%7)
            if S[x][(y-1)%7]==1 and find(x*7+(y-1)%7)!=town:
                Union(x*7+y,x*7+(y-1)%7)
                Q.append(x*7+(y-1)%7)

            for to in E[x]:
                if S[to][y]==1 and find(to*7+y)!=town:
                    Union(x*7+y,to*7+y)
                    Q.append(to*7+y)
        
    else:
        x-=1
        print(Nodes[find(x*7)])
        
0