結果

問題 No.2946 Puyo
ユーザー titiatitia
提出日時 2024-10-25 21:34:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,018 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 65,852 KB
最終ジャッジ日時 2024-10-25 21:35:25
合計ジャッジ時間 44,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 1,196 ms
65,784 KB
testcase_04 AC 1,159 ms
65,804 KB
testcase_05 AC 1,229 ms
65,852 KB
testcase_06 AC 1,218 ms
65,704 KB
testcase_07 AC 1,230 ms
65,716 KB
testcase_08 AC 102 ms
14,848 KB
testcase_09 AC 389 ms
28,416 KB
testcase_10 AC 85 ms
13,952 KB
testcase_11 AC 594 ms
38,596 KB
testcase_12 AC 92 ms
14,336 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 179 ms
16,640 KB
testcase_15 AC 89 ms
13,440 KB
testcase_16 AC 242 ms
20,096 KB
testcase_17 AC 812 ms
41,640 KB
testcase_18 AC 41 ms
11,264 KB
testcase_19 AC 383 ms
23,040 KB
testcase_20 AC 507 ms
26,752 KB
testcase_21 AC 891 ms
38,084 KB
testcase_22 AC 125 ms
14,336 KB
testcase_23 AC 538 ms
25,600 KB
testcase_24 AC 1,254 ms
45,636 KB
testcase_25 AC 1,100 ms
41,064 KB
testcase_26 AC 1,254 ms
44,688 KB
testcase_27 AC 47 ms
11,264 KB
testcase_28 AC 1,497 ms
37,540 KB
testcase_29 TLE -
testcase_30 AC 1,077 ms
31,872 KB
testcase_31 AC 1,614 ms
42,396 KB
testcase_32 AC 1,601 ms
42,656 KB
testcase_33 AC 1,340 ms
38,240 KB
testcase_34 AC 1,860 ms
50,720 KB
testcase_35 AC 1,508 ms
43,740 KB
testcase_36 AC 1,432 ms
44,900 KB
testcase_37 AC 1,459 ms
47,976 KB
testcase_38 AC 973 ms
37,376 KB
testcase_39 AC 886 ms
35,956 KB
testcase_40 AC 496 ms
27,008 KB
testcase_41 AC 1,124 ms
46,448 KB
testcase_42 AC 967 ms
42,848 KB
testcase_43 AC 1,317 ms
36,120 KB
testcase_44 AC 1,717 ms
42,280 KB
testcase_45 AC 1,426 ms
36,776 KB
testcase_46 AC 855 ms
27,008 KB
testcase_47 AC 1,295 ms
35,792 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