結果

問題 No.402 最も海から遠い場所
ユーザー kohei2019kohei2019
提出日時 2022-01-20 23:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,886 ms / 3,000 ms
コード長 721 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 452,440 KB
最終ジャッジ日時 2024-11-24 10:17:55
合計ジャッジ時間 11,556 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,504 KB
testcase_01 AC 37 ms
54,572 KB
testcase_02 AC 53 ms
67,040 KB
testcase_03 AC 35 ms
54,244 KB
testcase_04 AC 35 ms
54,840 KB
testcase_05 AC 35 ms
54,716 KB
testcase_06 AC 34 ms
55,020 KB
testcase_07 AC 35 ms
54,276 KB
testcase_08 AC 33 ms
54,556 KB
testcase_09 AC 35 ms
55,084 KB
testcase_10 AC 35 ms
54,244 KB
testcase_11 AC 51 ms
66,368 KB
testcase_12 AC 47 ms
64,876 KB
testcase_13 AC 72 ms
76,968 KB
testcase_14 AC 61 ms
72,708 KB
testcase_15 AC 110 ms
82,640 KB
testcase_16 AC 151 ms
83,584 KB
testcase_17 AC 808 ms
257,652 KB
testcase_18 AC 2,886 ms
312,212 KB
testcase_19 AC 1,565 ms
452,440 KB
testcase_20 AC 1,436 ms
241,748 KB
testcase_21 AC 2,481 ms
438,564 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))

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
                d.append((x+dx,y+dy))

cmax = 0
for i in range(H):
    for j in range(W):
        cmax = max(cmax,cost[i][j])
print(cmax)
0