結果
問題 | No.157 2つの空洞 |
ユーザー | matsu7874 |
提出日時 | 2015-12-20 11:09:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 897 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 18,336 KB |
最終ジャッジ日時 | 2024-09-17 11:56:35 |
合計ジャッジ時間 | 7,970 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
18,080 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 50 ms
10,752 KB |
testcase_03 | AC | 86 ms
10,880 KB |
testcase_04 | AC | 164 ms
10,752 KB |
testcase_05 | AC | 293 ms
10,880 KB |
testcase_06 | AC | 1,249 ms
10,752 KB |
testcase_07 | AC | 73 ms
10,752 KB |
testcase_08 | AC | 57 ms
10,752 KB |
testcase_09 | AC | 310 ms
10,752 KB |
testcase_10 | AC | 86 ms
10,880 KB |
testcase_11 | AC | 1,903 ms
11,136 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
W, H = map(int, input().split()) maze = [input() for i in range(H)] dist = [[W * H for j in range(W * H)] for j in range(W * H)] for i in range(W * H): dist[i][i] = 0 for d in (-W, -1, 1, W): if i + d < 0 or W * H <= i + d: continue if d in (-1, 1) and (i + d) // W != i // W: continue if maze[(i + d) // W][(i + d) % W] == '#': dist[i][i + d] = 1 else: dist[i][i + d] = 0 for k in range(W * H): for i in range(W * H): for j in range(W * H): dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]) min_cost = W * H for i in range(W+1, W*H): if maze[i // W][i % W] == '#': continue for j in range(i + 1, W * (H-1)): if maze[j // W][j % W] == '#': continue if dist[i][j] > 0: min_cost = min(min_cost, dist[i][j]) print(min_cost)