結果
問題 | No.402 最も海から遠い場所 |
ユーザー | はむ吉🐹 |
提出日時 | 2016-07-26 13:39:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,481 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 82,336 KB |
実行使用メモリ | 402,252 KB |
最終ジャッジ日時 | 2024-11-06 16:57:49 |
合計ジャッジ時間 | 9,124 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
61,316 KB |
testcase_01 | AC | 42 ms
54,720 KB |
testcase_02 | AC | 153 ms
78,416 KB |
testcase_03 | AC | 39 ms
54,324 KB |
testcase_04 | AC | 41 ms
53,860 KB |
testcase_05 | AC | 48 ms
60,500 KB |
testcase_06 | AC | 41 ms
54,004 KB |
testcase_07 | AC | 41 ms
53,836 KB |
testcase_08 | AC | 42 ms
54,324 KB |
testcase_09 | AC | 47 ms
59,876 KB |
testcase_10 | AC | 43 ms
55,192 KB |
testcase_11 | AC | 128 ms
77,856 KB |
testcase_12 | AC | 85 ms
76,732 KB |
testcase_13 | AC | 308 ms
82,864 KB |
testcase_14 | AC | 216 ms
80,156 KB |
testcase_15 | AC | 822 ms
102,756 KB |
testcase_16 | AC | 1,439 ms
125,652 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#!/usr/bin/env pypy3 import array import heapq import itertools INF = 10 ** 8 def compute(height, width, is_sea): dist = [array.array("L", (INF for _ in range(width))) for _ in range(height)] pq = [] for r, c in itertools.product(range(height), range(width)): if is_sea[r][c]: dist[r][c] = 0 pq.append((0, (r, c))) heapq.heapify(pq) while pq: _, (r0, c0) = heapq.heappop(pq) for dr, dc in itertools.product((1, 0, -1), repeat=2): if dr == dc == 0: continue r, c = r0 + dr, c0 + dc if r < 0 or r >= height or c < 0 or c >= width: continue if is_sea[r][c]: continue new_length = dist[r0][c0] + 1 if new_length < dist[r][c]: dist[r][c] = new_length heapq.heappush(pq, (new_length, (r, c))) rc = itertools.product(range(height), range(width)) return max(dist[r][c] for r, c in rc) def main(): height, width = map(int, input().split()) is_sea = [array.array("B", (True for _ in range(width + 2)))] for _ in range(height): row = array.array("B", (True, )) row.extend(map(lambda x: x == ".", input())) row.append(True) is_sea.append(row) is_sea.append(array.array("B", (True for _ in range(width + 2)))) print(compute(height + 2, width + 2, is_sea)) if __name__ == '__main__': main()