結果

問題 No.157 2つの空洞
ユーザー noriocnorioc
提出日時 2024-08-21 02:30:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 65,572 KB
最終ジャッジ日時 2024-08-21 02:30:48
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,300 KB
testcase_01 AC 47 ms
54,992 KB
testcase_02 AC 44 ms
54,652 KB
testcase_03 AC 46 ms
55,892 KB
testcase_04 AC 50 ms
60,436 KB
testcase_05 AC 50 ms
60,568 KB
testcase_06 AC 46 ms
55,252 KB
testcase_07 AC 48 ms
55,628 KB
testcase_08 AC 45 ms
54,524 KB
testcase_09 AC 49 ms
59,980 KB
testcase_10 AC 44 ms
54,464 KB
testcase_11 AC 49 ms
60,800 KB
testcase_12 AC 45 ms
54,720 KB
testcase_13 AC 48 ms
60,548 KB
testcase_14 AC 51 ms
62,036 KB
testcase_15 AC 56 ms
64,448 KB
testcase_16 AC 52 ms
62,548 KB
testcase_17 AC 60 ms
65,572 KB
testcase_18 AC 51 ms
61,664 KB
testcase_19 AC 46 ms
54,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from collections.abc import Iterator


def neighbors4(r: int, c: int) -> Iterator[tuple[int, int]]:
    for dr, dc in [(-1, 0), (1, 0), (0, -1), (0, 1)]:
        nr = r + dr
        nc = c + dc
        if not (0 <= nr < H and 0 <= nc < W): continue
        yield nr, nc


def fill(row, col, g, val):
    q = deque([(row, col)])
    while q:
        r, c = q.popleft()
        if g[r][c] == val: continue
        g[r][c] = val

        for nr, nc in neighbors4(r, c):
            if g[nr][nc] == val: continue
            if G[nr][nc] == '#': continue
            q.append((nr, nc))


INF = 1 << 60
W, H = map(int, input().split())
G = [input() for _ in range(H)]

g = [[-1] * W for _ in range(H)]
marker = 0
for i in range(H):
    for j in range(W):
        if g[i][j] != -1: continue
        if G[i][j] == '#': continue
        fill(i, j, g, marker)
        marker += 1

ans = INF
for r1 in range(H):
    for c1 in range(W):
        if g[r1][c1] != 0: continue
        for r2 in range(H):
            for c2 in range(W):
                if g[r2][c2] != 1: continue
                d = abs(r1 - r2) + abs(c1 - c2)
                ans = min(ans, d - 1)

print(ans)
0