結果

問題 No.402 最も海から遠い場所
ユーザー kohei2019kohei2019
提出日時 2022-01-21 00:00:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 679 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 86,936 KB
実行使用メモリ 453,044 KB
最終ジャッジ日時 2023-08-16 01:07:30
合計ジャッジ時間 14,230 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
71,800 KB
testcase_01 AC 78 ms
71,708 KB
testcase_02 AC 95 ms
77,588 KB
testcase_03 AC 80 ms
71,560 KB
testcase_04 AC 80 ms
71,636 KB
testcase_05 AC 79 ms
71,620 KB
testcase_06 AC 79 ms
71,708 KB
testcase_07 AC 84 ms
71,780 KB
testcase_08 AC 79 ms
71,416 KB
testcase_09 AC 80 ms
71,720 KB
testcase_10 AC 82 ms
71,664 KB
testcase_11 AC 94 ms
77,564 KB
testcase_12 AC 88 ms
77,280 KB
testcase_13 AC 110 ms
78,304 KB
testcase_14 AC 108 ms
77,448 KB
testcase_15 AC 149 ms
84,072 KB
testcase_16 AC 193 ms
83,812 KB
testcase_17 AC 878 ms
258,820 KB
testcase_18 TLE -
testcase_19 AC 1,723 ms
453,044 KB
testcase_20 AC 1,691 ms
240,364 KB
testcase_21 AC 2,602 ms
428,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
H,W = map(int,input().split())
lsHW = ['.'*(W+2)]+['.'+input()+'.' for i in range(H)]+['.'*(W+2)]
H += 2
W += 2
INF = 5000
cost = [[INF]*(W) for i in range(H)]
dxy = [(0,1),(1,0),(-1,0),(0,-1),(1,1),(-1,1),(1,-1),(-1,-1)]
d = collections.deque()
for i in range(H):
    for j in range(W):
        if lsHW[i][j] == '.':
            cost[i][j] = 0
            d.append((i,j))
cmax = 0
while d:
    x,y = d.popleft()
    for dx,dy in dxy:
        if 0<=x+dx<H and 0<= y+dy <W:
            if cost[x+dx][y+dy] > cost[x][y] + 1:
                cost[x+dx][y+dy] = cost[x][y] + 1
                cmax = cost[x][y] + 1
                d.append((x+dx,y+dy))
print(cmax)
0