結果

問題 No.157 2つの空洞
ユーザー ryusukeryusuke
提出日時 2022-07-26 12:28:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 1,107 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 60,976 KB
最終ジャッジ日時 2024-07-16 05:17:50
合計ジャッジ時間 1,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,188 KB
testcase_01 AC 40 ms
54,668 KB
testcase_02 AC 41 ms
54,472 KB
testcase_03 AC 39 ms
55,176 KB
testcase_04 AC 41 ms
54,804 KB
testcase_05 AC 41 ms
55,224 KB
testcase_06 AC 41 ms
54,332 KB
testcase_07 AC 40 ms
54,544 KB
testcase_08 AC 42 ms
54,092 KB
testcase_09 AC 41 ms
55,572 KB
testcase_10 AC 41 ms
54,420 KB
testcase_11 AC 40 ms
55,384 KB
testcase_12 AC 40 ms
53,996 KB
testcase_13 AC 40 ms
54,772 KB
testcase_14 AC 40 ms
55,320 KB
testcase_15 AC 43 ms
60,976 KB
testcase_16 AC 39 ms
54,364 KB
testcase_17 AC 45 ms
60,904 KB
testcase_18 AC 42 ms
54,664 KB
testcase_19 AC 39 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bfs(sy: int, sx: int, num: int) -> None:
    dist[sy][sx] = num
    q = deque()
    q.append((sy, sx))
    while q:
        vy, vx = q.popleft()
        for dy, dx in ((1, 0), (-1, 0), (0, 1), (0, -1)):
            y = vy + dy
            x = vx + dx
            if not (0 <= x < w and 0 <= y < h):
                continue
            if grid[y][x] == "#":
                continue
            if dist[y][x] != -1:
                continue
            dist[y][x] = dist[vy][vx]
            q.append((y, x))

w, h = map(int, input().split())
grid = [list(input()) for _ in range(h)]
from collections import deque
dist = [[-1] * w for _ in range(h)]
cnt = 1
for i in range(h):
    for j in range(w):
        if grid[i][j] == "." and dist[i][j] == -1:
            bfs(i, j, 1000 * cnt)
            cnt += 1

a = []
b = []
for i in range(h):
    for j in range(w):
        if dist[i][j] == 1000:
            a.append((i, j))
        if dist[i][j] == 2000:
            b.append((i, j))

ans = 10 ** 18
for xi, yi in a:
    for xj, yj in b:
        ans = min(ans, abs(xi - xj) + abs(yi - yj))

print(ans - 1)
0