結果
問題 | No.402 最も海から遠い場所 |
ユーザー | mitsuo |
提出日時 | 2018-08-24 11:20:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,378 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 239,972 KB |
最終ジャッジ日時 | 2024-06-11 17:27:33 |
合計ジャッジ時間 | 6,231 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
239,972 KB |
testcase_01 | AC | 26 ms
10,880 KB |
testcase_02 | AC | 35 ms
11,520 KB |
testcase_03 | AC | 29 ms
11,008 KB |
testcase_04 | AC | 26 ms
11,008 KB |
testcase_05 | AC | 28 ms
11,008 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 27 ms
10,880 KB |
testcase_09 | AC | 29 ms
10,880 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
from collections import deque def solve(H, W, M): dmap = [[-1] * H for _ in range(0, W)] candidates = deque([]) checked = set() for h in range(0, H): for w in range(0, W): if M[h][w] == ".": dmap[h][w] = 0 candidates.append((0, h, w)) checked.add((h, w)) elif (h == 0 or h == H - 1 or w == 0 or w == W - 1) and M[h][w] == "#": dmap[h][w] = 1 candidates.appendleft((1, h, w)) checked.add((h, w)) max = 1 count = 0 while(len(candidates)): count += 1 can = candidates.pop() d = can[0] h = can[1] w = can[2] for (xi, yi) in [(h-1, w-1),(h-1, w), (h-1, w+1), (h , w - 1), (h, w + 1), (h + 1, w - 1), (h + 1, w), (h + 1, w + 1)]: if xi > 0 and yi > 0 and xi < H and yi < W: if (xi, yi) in checked: continue checked.add((xi, yi)) if dmap[xi][yi] == -1: dmap[xi][yi] = d + 1 max = d + 1 candidates.appendleft((d + 1, xi, yi)) return max if __name__ == "__main__": H, W = tuple([int(c) for c in input().split(" ")]) print(solve(H, W, [input() for _ in range(0, H)]))