結果

問題 No.402 最も海から遠い場所
ユーザー titiatitia
提出日時 2023-03-20 01:35:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 755 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 451,840 KB
最終ジャッジ日時 2024-09-18 13:56:46
合計ジャッジ時間 14,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,888 KB
testcase_01 AC 42 ms
54,528 KB
testcase_02 AC 58 ms
69,760 KB
testcase_03 AC 37 ms
53,760 KB
testcase_04 WA -
testcase_05 AC 41 ms
60,288 KB
testcase_06 WA -
testcase_07 AC 40 ms
54,272 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 WA -
testcase_10 RE -
testcase_11 AC 58 ms
67,328 KB
testcase_12 AC 58 ms
65,664 KB
testcase_13 AC 91 ms
77,568 KB
testcase_14 AC 84 ms
76,928 KB
testcase_15 AC 141 ms
86,400 KB
testcase_16 AC 169 ms
89,856 KB
testcase_17 WA -
testcase_18 AC 2,733 ms
288,416 KB
testcase_19 AC 2,326 ms
451,840 KB
testcase_20 AC 2,207 ms
250,880 KB
testcase_21 AC 2,206 ms
415,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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[0][i]=0
    Q.append((0,i))
    Q.append((0,H+1))

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 range(x-1,x+2):
        for w in range(y-1,y+2):
            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(MAX)
0