結果

問題 No.402 最も海から遠い場所
ユーザー rlangevinrlangevin
提出日時 2023-07-16 12:28:10
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 851 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 703,232 KB
最終ジャッジ日時 2024-09-17 12:42:09
合計ジャッジ時間 9,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,392 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 64 ms
66,944 KB
testcase_03 AC 40 ms
53,504 KB
testcase_04 AC 40 ms
54,272 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 45 ms
53,888 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 45 ms
53,632 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 42 ms
53,888 KB
testcase_11 AC 55 ms
64,384 KB
testcase_12 AC 51 ms
62,720 KB
testcase_13 AC 81 ms
79,232 KB
testcase_14 AC 63 ms
69,376 KB
testcase_15 AC 133 ms
91,136 KB
testcase_16 AC 166 ms
98,176 KB
testcase_17 AC 1,741 ms
426,112 KB
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H, W = map(int, input().split())
S = []
S.append(["."] * (W + 2))
for i in range(H):
    S.append(["."] + list(input().rstrip()) + ["."])
S.append(["."] * (W + 2))
    
dx = [1, 0, -1, 0, 1, 1, -1, -1]
dy = [0, 1, 0, -1, 1, -1, 1, -1]

from collections import *
Q = deque()
dist = [[-1] * (W + 2) for i in range(H + 2)]
for i in range(H + 2):
    for j in range(W + 2):
        if S[i][j] == ".":
            dist[i][j] = 0
            Q.append((i, j))
            
ans = 0
while Q:
    i, j = Q.popleft()
    for k in range(8):
        x = i + dx[k]
        y = j + dy[k]
        if x < 0 or x > H + 1 or y < 0 or y > W + 1:
            continue
        if dist[x][y] != -1:
            continue
        dist[x][y] = dist[i][j] + 1
        ans = max(ans, dist[x][y])
        Q.append((x, y))
        
print(ans)
0