結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 933 ms
56,280 KB
testcase_02 AC 927 ms
56,404 KB
testcase_03 AC 935 ms
56,464 KB
testcase_04 AC 1,223 ms
78,796 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 931 ms
56,264 KB
testcase_08 WA -
testcase_09 AC 941 ms
56,652 KB
testcase_10 AC 938 ms
56,520 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,148 ms
149,352 KB
testcase_16 AC 1,786 ms
149,272 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

# %%
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]

# %%
graph = csr_matrix((C, (A - 1, B - 1)), (N, N))
dist = dijkstra(graph, directed=False)

# %%
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