結果

問題 No.402 最も海から遠い場所
ユーザー roarisroaris
提出日時 2019-12-12 20:51:01
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 913 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 829,624 KB
最終ジャッジ日時 2024-06-25 15:02:58
合計ジャッジ時間 10,345 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,160 KB
testcase_01 AC 44 ms
54,400 KB
testcase_02 AC 63 ms
70,144 KB
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 49 ms
60,160 KB
testcase_06 AC 45 ms
53,888 KB
testcase_07 AC 44 ms
53,984 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 48 ms
60,032 KB
testcase_10 AC 45 ms
54,656 KB
testcase_11 AC 63 ms
67,584 KB
testcase_12 AC 61 ms
66,304 KB
testcase_13 AC 103 ms
79,308 KB
testcase_14 AC 89 ms
76,876 KB
testcase_15 AC 194 ms
100,428 KB
testcase_16 AC 291 ms
116,884 KB
testcase_17 AC 2,599 ms
475,092 KB
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def bfs():
    q = deque([])
    ans = 0
    
    for i in range(H+2):
        for j in range(W+2):
            if S[i][j]=='.':
                q.append((i, j))
                S[i][j] = 0
    
    while q:
        cx, cy = q.popleft()
        
        for i in range(-1, 2):
            for j in range(-1, 2):
                if i==0 and j==0:
                    continue
                
                nx, ny = cx+i, cy+j
                
                if 0<=nx<H+2 and 0<=ny<W+2 and S[nx][ny]=='#':
                    S[nx][ny] = S[cx][cy]+1
                    q.append((nx, ny))
                    
                    if ans<S[nx][ny]:
                        ans = S[nx][ny]
    
    return ans

H, W = map(int, input().split())
S = [list('.'*(W+2))]+[list('.'+input()[:-1]+'.') for _ in range(H)]+[list('.'*(W+2))]

print(bfs())
0