結果

問題 No.2946 Puyo
ユーザー while-true-ifwhile-true-if
提出日時 2024-10-25 21:28:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,986 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 41,036 KB
最終ジャッジ日時 2024-10-25 21:29:31
合計ジャッジ時間 38,109 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 1,973 ms
26,752 KB
testcase_04 AC 1,944 ms
26,624 KB
testcase_05 AC 1,982 ms
26,624 KB
testcase_06 AC 1,954 ms
26,624 KB
testcase_07 AC 1,986 ms
26,624 KB
testcase_08 AC 145 ms
11,904 KB
testcase_09 AC 599 ms
16,128 KB
testcase_10 AC 131 ms
11,904 KB
testcase_11 AC 984 ms
18,944 KB
testcase_12 AC 137 ms
12,032 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 203 ms
12,544 KB
testcase_15 AC 94 ms
11,520 KB
testcase_16 AC 256 ms
13,568 KB
testcase_17 AC 842 ms
19,712 KB
testcase_18 AC 41 ms
10,880 KB
testcase_19 AC 314 ms
14,464 KB
testcase_20 AC 403 ms
15,488 KB
testcase_21 AC 715 ms
18,816 KB
testcase_22 AC 109 ms
11,904 KB
testcase_23 AC 476 ms
15,104 KB
testcase_24 AC 1,144 ms
21,120 KB
testcase_25 AC 998 ms
19,712 KB
testcase_26 AC 1,126 ms
20,736 KB
testcase_27 AC 46 ms
10,880 KB
testcase_28 AC 772 ms
27,136 KB
testcase_29 AC 1,125 ms
29,568 KB
testcase_30 AC 571 ms
22,656 KB
testcase_31 AC 884 ms
26,368 KB
testcase_32 AC 857 ms
22,912 KB
testcase_33 AC 744 ms
19,328 KB
testcase_34 AC 1,126 ms
24,064 KB
testcase_35 AC 983 ms
21,120 KB
testcase_36 AC 1,012 ms
21,888 KB
testcase_37 AC 1,133 ms
22,144 KB
testcase_38 AC 821 ms
18,816 KB
testcase_39 AC 817 ms
18,304 KB
testcase_40 AC 521 ms
15,744 KB
testcase_41 AC 1,135 ms
21,248 KB
testcase_42 AC 1,040 ms
20,224 KB
testcase_43 AC 759 ms
35,200 KB
testcase_44 AC 886 ms
41,036 KB
testcase_45 AC 781 ms
29,004 KB
testcase_46 AC 462 ms
19,200 KB
testcase_47 AC 675 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

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

dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]

visited = [[False] * W for _ in range(H)]

def dfs(x, y, char):
    stack = [(x, y)]
    component = [(x, y)]
    visited[x][y] = True
    while stack:
        cx, cy = stack.pop()
        for i in range(4):
            nx, ny = cx + dx[i], cy + dy[i]
            if 0 <= nx < H and 0 <= ny < W and not visited[nx][ny] and grid[nx][ny] == char:
                visited[nx][ny] = True
                stack.append((nx, ny))
                component.append((nx, ny))
    return component

for i in range(H):
    for j in range(W):
        if grid[i][j] != '.' and not visited[i][j]:
            component = dfs(i, j, grid[i][j])
            if len(component) >= 4:
                for x, y in component:
                    grid[x][y] = '.'

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