結果

問題 No.157 2つの空洞
ユーザー 12354865271235486527
提出日時 2019-12-14 04:42:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 1,234 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-28 02:50:18
合計ジャッジ時間 1,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 34 ms
11,136 KB
testcase_02 AC 34 ms
11,136 KB
testcase_03 AC 34 ms
11,264 KB
testcase_04 AC 33 ms
11,136 KB
testcase_05 AC 35 ms
11,136 KB
testcase_06 AC 34 ms
11,136 KB
testcase_07 AC 33 ms
11,136 KB
testcase_08 AC 33 ms
11,264 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 34 ms
11,136 KB
testcase_11 AC 33 ms
11,136 KB
testcase_12 AC 33 ms
11,264 KB
testcase_13 AC 34 ms
11,264 KB
testcase_14 AC 36 ms
11,008 KB
testcase_15 AC 37 ms
11,264 KB
testcase_16 AC 35 ms
11,136 KB
testcase_17 AC 43 ms
11,008 KB
testcase_18 AC 34 ms
11,136 KB
testcase_19 AC 33 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from queue import Queue

def bfs(y, x, C, cave, num):
    Q = Queue()
    Q.put((y, x))
    while not Q.empty():
        n = Q.get()
        if C[n[0]][n[1]-1] == '.' and (n[0], n[1]-1) not in cave[num]:
            cave[num].append((n[0], n[1]-1))
            Q.put((n[0], n[1]-1))
        if C[n[0]][n[1]+1] == '.' and (n[0], n[1]+1) not in cave[num]:
            cave[num].append((n[0], n[1]+1))
            Q.put((n[0], n[1]+1))
        if C[n[0]-1][n[1]] == '.' and (n[0]-1, n[1]) not in cave[num]:
            cave[num].append((n[0]-1, n[1]))
            Q.put((n[0]-1, n[1]))
        if C[n[0]+1][n[1]] == '.' and (n[0]+1, n[1]) not in cave[num]:
            cave[num].append((n[0]+1, n[1]))
            Q.put((n[0]+1, n[1]))
    return

W, H = map(int, input().split())
C = []
for _ in range(H):
    C.append(input())
num = 0
cave = [[],[]]
for y in range(1, H-1):
    for x in range(1, W-1):
        if C[y][x] == '.' and (y, x) not in cave[0] and (y, x) not in cave[1]:
            cave[num].append((y, x))
            bfs(y, x, C, cave, num)
            num += 1
min_dist = float('inf')
for c1 in cave[0]:
    for c2 in cave[1]:
        min_dist = min(min_dist, abs(c1[0] - c2[0]) + abs(c1[1] - c2[1]) - 1)
print(min_dist)
0