結果

問題 No.788 トラックの移動
ユーザー maspymaspy
提出日時 2020-03-17 11:48:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,051 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 243,424 KB
最終ジャッジ日時 2024-12-15 07:07:56
合計ジャッジ時間 24,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 884 ms
56,216 KB
testcase_02 AC 838 ms
56,692 KB
testcase_03 AC 856 ms
56,436 KB
testcase_04 AC 1,124 ms
79,200 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 831 ms
56,560 KB
testcase_08 AC 827 ms
56,948 KB
testcase_09 AC 825 ms
56,560 KB
testcase_10 AC 841 ms
56,436 KB
testcase_11 AC 834 ms
56,688 KB
testcase_12 AC 837 ms
56,812 KB
testcase_13 AC 824 ms
56,184 KB
testcase_14 AC 817 ms
56,044 KB
testcase_15 AC 1,075 ms
149,524 KB
testcase_16 AC 1,674 ms
243,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
from scipy.sparse.csgraph import dijkstra
from scipy.sparse import csr_matrix
from collections import defaultdict

# %%
N, M, L = map(int, readline().split())
T = np.array(readline().split(), np.int64)
ABC = np.array(read().split(), np.int64)
A = ABC[::3] - 1
B = ABC[1::3] - 1
C = ABC[2::3]

# %%
INF = 10 ** 12
wt = defaultdict(lambda: INF)
for a, b, c in zip(A, B, C):
    if a > b:
        a, b = b, a
    if wt[(a, b)] > c:
        wt[(a, b)] = c
A = []
B = []
C = []
for (a, b), c in wt.items():
    A.append(a)
    B.append(b)
    C.append(c)

if np.count_nonzero(T > 0) <= 1:
    print(0)
    exit()
# %%
graph = csr_matrix((C, (A, B)), (N, N))
dist = dijkstra(graph, directed=False)
# %%
dist = (dist + .5).astype(np.int64)
cost = (dist * T[None, :]).sum(axis=1) * 2
diff = -dist + dist[L - 1][None, :]
diff[:, T == 0] += 10 ** 12
cost = cost[:, None] + diff
print(cost.min())
0