結果

問題 No.157 2つの空洞
ユーザー lloyzlloyz
提出日時 2023-06-14 00:04:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,138 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 65,728 KB
最終ジャッジ日時 2024-06-22 11:06:40
合計ジャッジ時間 2,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,812 KB
testcase_01 AC 41 ms
55,328 KB
testcase_02 AC 42 ms
54,928 KB
testcase_03 AC 40 ms
55,444 KB
testcase_04 AC 41 ms
54,588 KB
testcase_05 AC 41 ms
55,272 KB
testcase_06 AC 43 ms
56,084 KB
testcase_07 AC 44 ms
54,572 KB
testcase_08 AC 41 ms
54,752 KB
testcase_09 AC 41 ms
54,548 KB
testcase_10 AC 41 ms
54,836 KB
testcase_11 AC 42 ms
54,380 KB
testcase_12 AC 41 ms
54,524 KB
testcase_13 AC 42 ms
55,460 KB
testcase_14 AC 49 ms
61,884 KB
testcase_15 AC 52 ms
63,716 KB
testcase_16 AC 53 ms
64,564 KB
testcase_17 AC 53 ms
65,728 KB
testcase_18 AC 42 ms
55,904 KB
testcase_19 AC 50 ms
63,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

w, h = map(int, input().split())
S = [list(input()) for _ in range(h)]

ci, cj = None, None
for i in range(h):
    for j in range(w):
        if S[i][j] == '.':
            ci, cj = i, j
            break
    if ci is not None:
        break

Directions = [(1, 0), (0, 1), (-1, 0), (0, -1)]
Que = deque([(ci, cj)])
start_set = set()
start_set.add((ci, cj))
while Que:
    ci, cj = Que.popleft()
    for di, dj in Directions:
        ni, nj = ci + di, cj + dj
        if 0 <= ni < h and 0 <= nj < w:
            if S[ni][nj] == '.' and (ni, nj) not in start_set:
                start_set.add((ni, nj))
                Que.append((ni, nj))

Que = deque()
for ci, cj in start_set:
    Que.append((ci, cj, 0))
seen = set()
while Que:
    ci, cj, cnt = Que.popleft()
    if S[ci][cj] == '.' and (ci, cj) not in start_set:
        print(cnt - 1)
        break
    for di, dj in Directions:
        ni, nj = ci + di, cj + dj
        if 0 <= ni < h and 0 <= nj < w:
            if (ni, nj) not in start_set and (ni, nj) not in seen:
                seen.add((ni, nj))
                Que.append((ni, nj, cnt + 1))
0