結果

問題 No.402 最も海から遠い場所
ユーザー kohei2019kohei2019
提出日時 2022-01-21 00:01:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 790 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 452,036 KB
最終ジャッジ日時 2024-05-03 11:04:21
合計ジャッジ時間 8,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,516 KB
testcase_01 AC 44 ms
54,508 KB
testcase_02 AC 54 ms
66,956 KB
testcase_03 AC 39 ms
54,384 KB
testcase_04 AC 38 ms
54,400 KB
testcase_05 AC 42 ms
54,580 KB
testcase_06 AC 43 ms
55,640 KB
testcase_07 AC 43 ms
54,576 KB
testcase_08 AC 43 ms
54,064 KB
testcase_09 AC 39 ms
54,540 KB
testcase_10 AC 43 ms
54,952 KB
testcase_11 AC 51 ms
64,756 KB
testcase_12 AC 47 ms
62,964 KB
testcase_13 AC 77 ms
77,076 KB
testcase_14 AC 70 ms
76,188 KB
testcase_15 AC 142 ms
85,752 KB
testcase_16 AC 190 ms
90,344 KB
testcase_17 AC 1,312 ms
257,300 KB
testcase_18 TLE -
testcase_19 AC 2,591 ms
452,036 KB
testcase_20 TLE -
testcase_21 AC 2,805 ms
414,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
def main():
    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)
main()
0