結果

問題 No.402 最も海から遠い場所
ユーザー nebukuro09nebukuro09
提出日時 2016-09-23 10:54:46
言語 PyPy2
(7.3.15)
結果
MLE  
実行時間 -
コード長 801 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 886,124 KB
最終ジャッジ日時 2024-11-17 17:35:55
合計ジャッジ時間 27,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
450,380 KB
testcase_01 AC 75 ms
82,220 KB
testcase_02 AC 102 ms
84,944 KB
testcase_03 AC 75 ms
363,384 KB
testcase_04 MLE -
testcase_05 AC 75 ms
82,344 KB
testcase_06 AC 72 ms
359,996 KB
testcase_07 AC 73 ms
82,328 KB
testcase_08 AC 73 ms
75,520 KB
testcase_09 AC 74 ms
75,688 KB
testcase_10 AC 74 ms
75,776 KB
testcase_11 AC 93 ms
78,476 KB
testcase_12 AC 89 ms
78,336 KB
testcase_13 AC 152 ms
85,944 KB
testcase_14 AC 109 ms
79,636 KB
testcase_15 AC 391 ms
116,756 KB
testcase_16 AC 636 ms
138,828 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, raw_input().split())
board = ['.'*(W+2)]
for i in xrange(H):
    board.append('.'+raw_input()+'.')
board.append('.'*(W+2))

frontier = set()
visited = set()
for i in xrange(H+2):
    for j in xrange(W+2):
        if board[i][j] == '.':
            frontier.add((i, j))


dr = [-1, -1, -1, 0, 0, 1, 1, 1]
dc = [-1, 0, 1, -1, 1, -1, 0, 1]
ans = 0
while len(visited) < (H+2)*(W+2):
    ans += 1
    new_frontier = set()
    for r, c in frontier:
        for i in xrange(8):
            nr, nc = r+dr[i], c+dc[i]
            if nr < 0 or nr >= H+2 or nc < 0 or nc >=W+2:
                continue
            if (nr, nc) in visited or (nr, nc) in frontier:
                continue
            new_frontier.add((nr, nc))
    visited |= frontier
    frontier = set(new_frontier)
print ans-1
0