結果
問題 | No.157 2つの空洞 |
ユーザー | matsu7874 |
提出日時 | 2015-12-20 11:06:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 890 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 16,384 KB |
最終ジャッジ日時 | 2024-09-17 11:56:08 |
合計ジャッジ時間 | 8,580 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,128 KB |
testcase_01 | AC | 34 ms
10,752 KB |
testcase_02 | AC | 55 ms
10,752 KB |
testcase_03 | AC | 92 ms
10,752 KB |
testcase_04 | AC | 175 ms
10,880 KB |
testcase_05 | AC | 311 ms
10,624 KB |
testcase_06 | AC | 1,262 ms
10,752 KB |
testcase_07 | AC | 73 ms
10,752 KB |
testcase_08 | AC | 61 ms
10,752 KB |
testcase_09 | AC | 319 ms
10,752 KB |
testcase_10 | AC | 91 ms
10,752 KB |
testcase_11 | AC | 1,959 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(H * W): if maze[i // W][i % W] == '#': continue for j in range(i + 1, W * H): if maze[j // W][j % W] == '#': continue if dist[i][j] > 0: min_cost = min(min_cost, dist[i][j]) print(min_cost)