結果

問題 No.402 最も海から遠い場所
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-24 07:05:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,508 ms / 3,000 ms
コード長 835 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 380,544 KB
最終ジャッジ日時 2024-07-05 09:39:22
合計ジャッジ時間 12,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 44 ms
54,016 KB
testcase_02 AC 79 ms
70,016 KB
testcase_03 AC 45 ms
53,760 KB
testcase_04 AC 44 ms
54,144 KB
testcase_05 AC 50 ms
60,288 KB
testcase_06 AC 45 ms
54,016 KB
testcase_07 AC 44 ms
53,888 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 49 ms
60,032 KB
testcase_10 AC 46 ms
54,528 KB
testcase_11 AC 73 ms
69,632 KB
testcase_12 AC 70 ms
68,224 KB
testcase_13 AC 105 ms
77,440 KB
testcase_14 AC 92 ms
77,056 KB
testcase_15 AC 139 ms
84,480 KB
testcase_16 AC 171 ms
87,680 KB
testcase_17 AC 1,031 ms
227,144 KB
testcase_18 AC 2,508 ms
274,308 KB
testcase_19 AC 1,965 ms
380,544 KB
testcase_20 AC 1,870 ms
256,276 KB
testcase_21 AC 1,964 ms
348,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.readline

h, w = map(int, input().split())
S = [str(input().rstrip()) for i in range(h)]
S = ['.'*(w+2)]+['.'+s+'.' for s in S]+['.'*(w+2)]
from collections import deque
INF = 10**18
q = deque([])
dist = [INF]*((h+2)*(w+2))
for y in range(h+2):
    for x in range(w+2):
        if S[y][x] == '.':
            dist[y*(w+2)+x] = 0
            q.append(y*(w+2)+x)
while q:
    v = q.popleft()
    y, x = divmod(v, w+2)
    for dy in range(-1, 2):
        for dx in range(-1, 2):
            if dy == 0 and dx == 0:
                continue
            ny, nx = y+dy, x+dx
            if 0 <= ny < h+2 and 0 <= nx < w+2:
                if dist[ny*(w+2)+nx] > dist[y*(w+2)+x]+1:
                    q.append(ny*(w+2)+nx)
                    dist[ny*(w+2)+nx] = dist[y*(w+2)+x]+1
print(max(dist))
0