結果

問題 No.402 最も海から遠い場所
ユーザー convexineqconvexineq
提出日時 2021-02-13 15:13:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,672 ms / 3,000 ms
コード長 625 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 451,840 KB
最終ジャッジ日時 2024-07-20 18:01:01
合計ジャッジ時間 14,025 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 47 ms
53,888 KB
testcase_02 AC 70 ms
67,328 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 47 ms
54,016 KB
testcase_05 AC 53 ms
59,904 KB
testcase_06 AC 47 ms
53,760 KB
testcase_07 AC 47 ms
53,760 KB
testcase_08 AC 48 ms
53,888 KB
testcase_09 AC 52 ms
59,904 KB
testcase_10 AC 47 ms
54,016 KB
testcase_11 AC 67 ms
65,920 KB
testcase_12 AC 64 ms
64,512 KB
testcase_13 AC 97 ms
77,440 KB
testcase_14 AC 85 ms
73,344 KB
testcase_15 AC 148 ms
85,888 KB
testcase_16 AC 171 ms
89,472 KB
testcase_17 AC 1,096 ms
257,024 KB
testcase_18 AC 2,672 ms
291,608 KB
testcase_19 AC 2,157 ms
451,840 KB
testcase_20 AC 1,979 ms
253,440 KB
testcase_21 AC 2,072 ms
414,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
b = ["."*(w+2)]
for _ in range(h):
    b.append("."+input()+".")
b += ["."*(w+2)]
h += 2; w += 2
dist = [[-1]*w for _ in range(h)]
from collections import deque
q = deque()
for i in range(h):
    for j in range(w):
        if b[i][j] == ".":
            q.append((i,j))
            dist[i][j] = 0
while q:
    i,j = q.popleft()
    for di in range(-1,2):
        for dj in range(-1,2):
            ni = i+di
            nj = j+dj
            if 0 <= ni < h and 0 <= nj < w and dist[ni][nj] == -1:
                dist[ni][nj] = dist[i][j] + 1
                q.append((ni,nj))
print(dist[i][j])
0