結果

問題 No.402 最も海から遠い場所
ユーザー titiatitia
提出日時 2023-03-20 01:38:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,924 ms / 3,000 ms
コード長 807 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 451,720 KB
最終ジャッジ日時 2024-09-18 13:57:18
合計ジャッジ時間 14,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,432 KB
testcase_01 AC 38 ms
54,344 KB
testcase_02 AC 63 ms
70,800 KB
testcase_03 AC 40 ms
55,168 KB
testcase_04 AC 40 ms
54,748 KB
testcase_05 AC 44 ms
60,848 KB
testcase_06 AC 39 ms
53,744 KB
testcase_07 AC 39 ms
54,124 KB
testcase_08 AC 38 ms
54,600 KB
testcase_09 AC 41 ms
61,676 KB
testcase_10 AC 38 ms
55,240 KB
testcase_11 AC 53 ms
67,676 KB
testcase_12 AC 51 ms
64,252 KB
testcase_13 AC 84 ms
77,200 KB
testcase_14 AC 75 ms
76,872 KB
testcase_15 AC 138 ms
85,692 KB
testcase_16 AC 171 ms
90,252 KB
testcase_17 AC 1,385 ms
257,288 KB
testcase_18 AC 2,924 ms
271,624 KB
testcase_19 AC 2,607 ms
451,720 KB
testcase_20 AC 2,556 ms
264,280 KB
testcase_21 AC 2,446 ms
416,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline

H,W=map(int,input().split())
MAP=[input() for i in range(H)]

ANS=[[1<<30]*(W+2) for i in range(H+2)]

Q=deque()

for i in range(H+2):
    ANS[i][0]=0
    ANS[i][W+1]=0
    Q.append((i,0))
    Q.append((i,W+1))


for i in range(W+2):
    ANS[0][i]=0
    ANS[H+1][i]=0
    Q.append((0,i))
    Q.append((H+1,i))

for i in range(H):
    for j in range(W):
        if MAP[i][j]==".":
            Q.append((i+1,j+1))
            ANS[i+1][j+1]=0

while Q:
    x,y=Q.popleft()
    for z in [x-1,x,x+1]:
        for w in [y-1,y,y+1]:
            if 0<=z<H+2 and 0<=w<W+2 and ANS[z][w]>ANS[x][y]+1:
                ANS[z][w]=ANS[x][y]+1
                Q.append((z,w))

MAX=0
for ans in ANS:
    MAX=max(MAX,max(ans))
    #print(*ans)

print(MAX)
0