結果
問題 | No.788 トラックの移動 |
ユーザー | H3PO4 |
提出日時 | 2021-02-04 09:49:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 838 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 177,792 KB |
最終ジャッジ日時 | 2024-06-30 15:00:17 |
合計ジャッジ時間 | 6,503 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 972 ms
56,692 KB |
testcase_02 | AC | 983 ms
56,684 KB |
testcase_03 | AC | 976 ms
56,428 KB |
testcase_04 | AC | 1,299 ms
71,312 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 961 ms
56,932 KB |
testcase_08 | AC | 964 ms
56,680 KB |
testcase_09 | AC | 968 ms
56,680 KB |
testcase_10 | AC | 962 ms
56,940 KB |
testcase_11 | AC | 963 ms
56,680 KB |
testcase_12 | AC | 970 ms
56,812 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1,242 ms
117,988 KB |
testcase_16 | AC | 1,866 ms
177,792 KB |
ソースコード
from collections import defaultdict import numpy as np from scipy.sparse.csgraph import dijkstra from scipy.sparse import csr_matrix N, M, L = map(int, input().split()) L -= 1 # 0-indexed T = np.array(list(map(int, input().split())), dtype=np.int64) nonzero = np.nonzero(T)[0] d = defaultdict(lambda: 2 * 10 ** 6) for _ in range(M): a, b, c = map(int, input().split()) a -= 1 b -= 1 d[(a, b)] = min(d[(a, b)], c) frm, to, length = [], [], [] for (a, b), c in d.items(): frm.append(a) to.append(b) length.append(c) matr = csr_matrix((length, (frm, to)), shape=(N, N)) way = dijkstra(matr, directed=False).astype(np.int64) ans = np.inf for target in range(N): tmp = np.sum(way[target] * 2 * T) first = np.max(way[target][nonzero] - way[L][nonzero]) tmp -= first ans = min(ans, tmp) print(ans)