結果

問題 No.788 トラックの移動
ユーザー maspymaspy
提出日時 2020-03-17 04:20:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 823 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 164,976 KB
最終ジャッジ日時 2024-05-06 18:54:04
合計ジャッジ時間 6,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

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 floyd_warshall

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

# %%
dist = np.full((N, N), 10 ** 9, np.int64)
np.fill_diagonal(dist, 0)
dist[A - 1, B - 1] = C
dist[B - 1, A - 1] = C
dist = floyd_warshall(dist)

# %%
dist = (dist + .5).astype(np.int64)
cost = (dist * T[None, :]).sum(axis=1) * 2
if T[L - 1]:
    cost = cost - dist[L - 1, :]
    print(cost.min())
else:
    diff = dist[L - 1][None, :] - dist
    diff[:, T == 0] = dist[L - 1][:, None]
    cost += diff.min(axis=1)
    print(cost.min())
0