結果

問題 No.2946 Puyo
ユーザー titiatitia
提出日時 2024-10-25 21:35:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 1,018 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 131,808 KB
最終ジャッジ日時 2024-10-25 21:35:31
合計ジャッジ時間 15,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,212 KB
testcase_01 AC 37 ms
53,680 KB
testcase_02 AC 37 ms
52,684 KB
testcase_03 AC 209 ms
131,744 KB
testcase_04 AC 237 ms
131,772 KB
testcase_05 AC 210 ms
131,744 KB
testcase_06 AC 214 ms
131,808 KB
testcase_07 AC 217 ms
131,764 KB
testcase_08 AC 77 ms
79,784 KB
testcase_09 AC 129 ms
94,072 KB
testcase_10 AC 82 ms
79,088 KB
testcase_11 AC 169 ms
104,664 KB
testcase_12 AC 77 ms
79,972 KB
testcase_13 AC 38 ms
52,588 KB
testcase_14 AC 147 ms
82,900 KB
testcase_15 AC 122 ms
79,600 KB
testcase_16 AC 160 ms
86,624 KB
testcase_17 AC 259 ms
108,260 KB
testcase_18 AC 99 ms
77,284 KB
testcase_19 AC 222 ms
90,072 KB
testcase_20 AC 240 ms
94,320 KB
testcase_21 AC 302 ms
105,756 KB
testcase_22 AC 144 ms
80,428 KB
testcase_23 AC 258 ms
93,432 KB
testcase_24 AC 409 ms
113,292 KB
testcase_25 AC 347 ms
107,904 KB
testcase_26 AC 391 ms
112,140 KB
testcase_27 AC 113 ms
77,296 KB
testcase_28 AC 440 ms
104,056 KB
testcase_29 AC 545 ms
116,060 KB
testcase_30 AC 379 ms
97,616 KB
testcase_31 AC 484 ms
109,008 KB
testcase_32 AC 464 ms
108,820 KB
testcase_33 AC 421 ms
105,616 KB
testcase_34 AC 530 ms
117,464 KB
testcase_35 AC 444 ms
109,832 KB
testcase_36 AC 413 ms
111,008 KB
testcase_37 AC 405 ms
114,460 KB
testcase_38 AC 311 ms
103,768 KB
testcase_39 AC 272 ms
103,240 KB
testcase_40 AC 202 ms
93,224 KB
testcase_41 AC 309 ms
112,916 KB
testcase_42 AC 276 ms
109,452 KB
testcase_43 AC 387 ms
102,580 KB
testcase_44 AC 471 ms
108,148 KB
testcase_45 AC 445 ms
103,296 KB
testcase_46 AC 305 ms
93,080 KB
testcase_47 AC 424 ms
102,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W=map(int,input().split())

MAP=[list(input().strip()) for i in range(H)]

# UnionFind

Group = [i for i in range(H*W+1)] # グループ分け
Nodes = [1]*(H*W+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)

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):
        if Nodes[find(i*W+j)]>=4:
            MAP[i][j]="."

for i in range(H):
    print("".join(MAP[i]))
0