結果

問題 No.307 最近色塗る問題多くない?
ユーザー titiatitia
提出日時 2022-11-10 01:18:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,690 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 131,712 KB
最終ジャッジ日時 2024-07-23 06:02:13
合計ジャッジ時間 22,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
131,712 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 110 ms
77,100 KB
testcase_05 AC 45 ms
59,904 KB
testcase_06 AC 52 ms
63,616 KB
testcase_07 AC 205 ms
78,744 KB
testcase_08 AC 691 ms
82,052 KB
testcase_09 AC 330 ms
80,076 KB
testcase_10 AC 383 ms
79,140 KB
testcase_11 AC 1,307 ms
80,136 KB
testcase_12 AC 44 ms
59,008 KB
testcase_13 AC 103 ms
76,704 KB
testcase_14 AC 149 ms
78,236 KB
testcase_15 AC 175 ms
78,380 KB
testcase_16 AC 150 ms
77,496 KB
testcase_17 AC 400 ms
79,284 KB
testcase_18 AC 871 ms
80,308 KB
testcase_19 AC 798 ms
81,316 KB
testcase_20 AC 124 ms
78,132 KB
testcase_21 AC 593 ms
79,880 KB
testcase_22 AC 457 ms
81,300 KB
testcase_23 AC 3,462 ms
80,000 KB
testcase_24 AC 1,499 ms
80,108 KB
testcase_25 AC 1,889 ms
79,744 KB
testcase_26 AC 3,791 ms
80,544 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W=map(int,input().split())
MAP=[list(map(int,input().split())) for i in range(H)]

# UnionFind

n=H*W

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

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)

ANS=[-1]*(H*W)

for i in range(H):
    for j in range(W):
        if i+1<H and MAP[i][j]==MAP[i+1][j]:
            Union(i*W+j,(i+1)*W+j)

        if j+1<W and MAP[i][j]==MAP[i][j+1]:
            Union(i*W+j,i*W+j+1)

for i in range(H):
    for j in range(W):
        ANS[find(i*W+j)]=MAP[i][j]

Q=int(input())
for tests in range(Q):
    x,y,c=map(int,input().split())
    x-=1
    y-=1

    k=find(x*W+y)

    if ANS[k]==c:
        continue
    else:
        ANS[k]^=1

        if Nodes[k]==H*W:
            continue

        U=[]

        for i in range(H):
            for j in range(W):
                if find(i*W+j)==k:
                    for z,w in [(i+1,j),(i-1,j),(i,j+1),(i,j-1)]:
                        if 0<=z<H and 0<=w<W and find(z*W+w)!=k:
                            U.append(find(z*W+w))

        for u in U:
            Union(u,k)

LANS=[[0]*W for i in range(H)]

for i in range(H):
    for j in range(W):
        k=find(i*W+j)
        LANS[i][j]=ANS[k]

for i in range(H):
    print(*LANS[i])
0