結果

問題 No.2946 Puyo
ユーザー OGOGOGOGOGOG
提出日時 2024-10-25 21:38:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 1,280 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 126,088 KB
最終ジャッジ日時 2024-10-25 21:38:27
合計ジャッジ時間 14,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,520 KB
testcase_01 AC 36 ms
53,560 KB
testcase_02 AC 38 ms
53,424 KB
testcase_03 AC 443 ms
125,496 KB
testcase_04 AC 473 ms
125,856 KB
testcase_05 AC 446 ms
125,516 KB
testcase_06 AC 480 ms
125,408 KB
testcase_07 AC 476 ms
126,088 KB
testcase_08 AC 119 ms
80,244 KB
testcase_09 AC 212 ms
92,808 KB
testcase_10 AC 105 ms
79,624 KB
testcase_11 AC 277 ms
100,892 KB
testcase_12 AC 102 ms
79,220 KB
testcase_13 AC 43 ms
60,148 KB
testcase_14 AC 114 ms
81,992 KB
testcase_15 AC 118 ms
79,756 KB
testcase_16 AC 147 ms
85,420 KB
testcase_17 AC 253 ms
103,744 KB
testcase_18 AC 82 ms
76,852 KB
testcase_19 AC 165 ms
87,972 KB
testcase_20 AC 184 ms
91,664 KB
testcase_21 AC 248 ms
100,852 KB
testcase_22 AC 109 ms
79,784 KB
testcase_23 AC 211 ms
90,640 KB
testcase_24 AC 353 ms
108,408 KB
testcase_25 AC 320 ms
104,180 KB
testcase_26 AC 343 ms
107,256 KB
testcase_27 AC 84 ms
76,872 KB
testcase_28 AC 269 ms
109,568 KB
testcase_29 AC 358 ms
117,188 KB
testcase_30 AC 219 ms
98,852 KB
testcase_31 AC 288 ms
112,008 KB
testcase_32 AC 274 ms
105,352 KB
testcase_33 AC 257 ms
101,760 KB
testcase_34 AC 332 ms
112,556 KB
testcase_35 AC 280 ms
106,748 KB
testcase_36 AC 292 ms
107,724 KB
testcase_37 AC 318 ms
110,356 KB
testcase_38 AC 259 ms
101,136 KB
testcase_39 AC 260 ms
99,416 KB
testcase_40 AC 203 ms
92,008 KB
testcase_41 AC 321 ms
108,620 KB
testcase_42 AC 316 ms
105,684 KB
testcase_43 AC 286 ms
113,848 KB
testcase_44 AC 322 ms
122,624 KB
testcase_45 AC 284 ms
112,508 KB
testcase_46 AC 186 ms
93,116 KB
testcase_47 AC 250 ms
102,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
input = sys.stdin.read

# 上下左右の移動方向
DIRECTIONS = [(0, 1), (1, 0), (0, -1), (-1, 0)]

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

# 入力の読み込み
data = input().splitlines()
H, W = map(int, data[0].split())
grid = [list(line) for line in data[1:]]

# 訪問済みのセルを管理するための配列
visited = [[False] * W for _ in range(H)]

# 連結成分を探して、条件に合うものを.に変換
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], visited, component)
            # 連結成分のサイズが4以上ならば.に置き換え
            if len(component) >= 4:
                for x, y in component:
                    grid[x][y] = '.'

# 結果を出力
for row in grid:
    print("".join(row))
0