結果
問題 | No.402 最も海から遠い場所 |
ユーザー | nebukuro09 |
提出日時 | 2016-09-23 11:16:20 |
言語 | PyPy2 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 866 bytes |
コンパイル時間 | 2,045 ms |
コンパイル使用メモリ | 76,416 KB |
実行使用メモリ | 775,580 KB |
最終ジャッジ日時 | 2024-11-17 17:36:46 |
合計ジャッジ時間 | 27,223 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | MLE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | OLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | OLE | - |
ソースコード
H, W = map(int, raw_input().split()) frontier = set((i, -1) for i in xrange(H)) | set((i, W) for i in xrange(H)) | set((-1, j) for j in xrange(W)) | set((H, j) for j in xrange(W)) visited = set() for i in xrange(H): b = raw_input() for j in xrange(W): if b[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 HW = (H+2)*(W+2)-4 while len(visited) < HW: ans += 1 new_frontier = set() print sorted(frontier) for r, c in frontier: for i in xrange(8): nr, nc = r+dr[i], c+dc[i] if nr < 0 or nr >= H or nc < 0 or nc >= W: 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