結果

問題 No.402 最も海から遠い場所
ユーザー 👑 rin204rin204
提出日時 2022-02-02 15:55:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,198 ms / 3,000 ms
コード長 785 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 452,096 KB
最終ジャッジ日時 2024-06-11 09:28:08
合計ジャッジ時間 12,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,888 KB
testcase_01 AC 39 ms
54,016 KB
testcase_02 AC 62 ms
67,712 KB
testcase_03 AC 38 ms
53,504 KB
testcase_04 AC 38 ms
54,144 KB
testcase_05 AC 39 ms
53,760 KB
testcase_06 AC 38 ms
53,760 KB
testcase_07 AC 38 ms
53,632 KB
testcase_08 AC 38 ms
53,888 KB
testcase_09 AC 38 ms
54,272 KB
testcase_10 AC 39 ms
54,144 KB
testcase_11 AC 56 ms
66,432 KB
testcase_12 AC 51 ms
63,616 KB
testcase_13 AC 82 ms
77,568 KB
testcase_14 AC 70 ms
72,704 KB
testcase_15 AC 119 ms
85,888 KB
testcase_16 AC 141 ms
89,472 KB
testcase_17 AC 917 ms
257,280 KB
testcase_18 AC 2,198 ms
291,480 KB
testcase_19 AC 2,181 ms
452,096 KB
testcase_20 AC 1,704 ms
252,800 KB
testcase_21 AC 1,741 ms
414,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
S = ["." * (w + 2)] + ["." + input() + "." for _ in range(h)] + ["." * (w + 2)]
h += 2
w += 2
queue = deque()
dist = [[-1] * w for _ in range(h)]
for i in range(h):
    for j in range(w):
        if S[i][j] == ".":
            dist[i][j] = 0
            queue.append((i, j))

ans = 0
while queue:
    i, j = queue.popleft()
    for di in range(-1, 2):
        ni = i + di
        if ni == -1 or ni == h:
            continue
        for dj in range(-1, 2):
            nj = j + dj
            if nj == -1 or nj == w:
                continue
            if dist[ni][nj] != -1:
                continue
            dist[ni][nj] = dist[i][j] + 1
            ans = dist[ni][nj]
            queue.append((ni, nj))

print(ans)
0