結果

問題 No.2946 Puyo
ユーザー I KI K
提出日時 2024-10-25 21:50:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 715 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 125,700 KB
最終ジャッジ日時 2024-10-25 21:50:21
合計ジャッジ時間 20,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,676 KB
testcase_01 AC 43 ms
54,688 KB
testcase_02 AC 42 ms
54,740 KB
testcase_03 AC 676 ms
124,840 KB
testcase_04 AC 710 ms
124,836 KB
testcase_05 AC 692 ms
124,664 KB
testcase_06 AC 715 ms
124,812 KB
testcase_07 AC 701 ms
125,044 KB
testcase_08 AC 153 ms
80,840 KB
testcase_09 AC 311 ms
92,904 KB
testcase_10 AC 137 ms
79,864 KB
testcase_11 AC 399 ms
101,140 KB
testcase_12 AC 133 ms
80,036 KB
testcase_13 AC 54 ms
63,608 KB
testcase_14 AC 166 ms
82,248 KB
testcase_15 AC 125 ms
79,468 KB
testcase_16 AC 204 ms
85,292 KB
testcase_17 AC 442 ms
103,908 KB
testcase_18 AC 102 ms
77,488 KB
testcase_19 AC 252 ms
87,832 KB
testcase_20 AC 288 ms
91,176 KB
testcase_21 AC 419 ms
100,836 KB
testcase_22 AC 143 ms
80,636 KB
testcase_23 AC 313 ms
89,804 KB
testcase_24 AC 488 ms
107,376 KB
testcase_25 AC 486 ms
103,364 KB
testcase_26 AC 504 ms
106,360 KB
testcase_27 AC 93 ms
77,396 KB
testcase_28 AC 382 ms
106,116 KB
testcase_29 AC 514 ms
119,404 KB
testcase_30 AC 296 ms
98,644 KB
testcase_31 AC 396 ms
108,804 KB
testcase_32 AC 426 ms
106,940 KB
testcase_33 AC 354 ms
101,376 KB
testcase_34 AC 469 ms
112,780 KB
testcase_35 AC 446 ms
106,616 KB
testcase_36 AC 435 ms
107,132 KB
testcase_37 AC 502 ms
109,444 KB
testcase_38 AC 410 ms
100,688 KB
testcase_39 AC 384 ms
99,588 KB
testcase_40 AC 285 ms
91,140 KB
testcase_41 AC 488 ms
108,048 KB
testcase_42 AC 468 ms
105,404 KB
testcase_43 AC 426 ms
114,052 KB
testcase_44 AC 480 ms
125,700 KB
testcase_45 AC 399 ms
113,032 KB
testcase_46 AC 273 ms
94,240 KB
testcase_47 AC 347 ms
102,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(si, sj, moji):#sensorsからパクった
    que = deque()
    que.append((si, sj))
    positions = []  
    while que:
        oi, oj = que.popleft()
        positions.append((oi, oj)) 
        for ni, nj in neighbor8(oi, oj):
            if not seen[ni][nj] and S[ni][nj] == moji:
                seen[ni][nj] = True
                que.append((ni, nj))
    return positions  

def neighbor8(i, j):#sensorsからパクった2
    lst = []
    moved=[(-1,0),(1,0),(0,-1),(0,1)]
    for mi, mj in moved:
        ni, nj = i+mi, j+mj
        if 0 <= ni < H and 0 <= nj < W:
            lst.append((ni, nj))
    return lst

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

seen = [[False] * W for _ in range(H)]
for i in range(H):
    for j in range(W):
        if not seen[i][j]:
            positions = bfs(i, j, S[i][j])
            if len(positions) > 4: 
                for pi, pj in positions:
                    S[pi][pj] = '.'  

for row in S:
    print(''.join(row))
0