結果

問題 No.788 トラックの移動
ユーザー mkawa2mkawa2
提出日時 2021-02-12 01:29:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 697 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 210,868 KB
最終ジャッジ日時 2024-07-18 12:00:05
合計ジャッジ時間 22,515 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 800 ms
56,392 KB
testcase_02 AC 793 ms
56,516 KB
testcase_03 AC 809 ms
56,520 KB
testcase_04 AC 1,083 ms
70,988 KB
testcase_05 AC 1,988 ms
118,172 KB
testcase_06 TLE -
testcase_07 AC 810 ms
56,640 KB
testcase_08 WA -
testcase_09 AC 810 ms
56,784 KB
testcase_10 AC 786 ms
56,780 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 797 ms
56,132 KB
testcase_14 AC 798 ms
55,876 KB
testcase_15 AC 1,016 ms
118,248 KB
testcase_16 AC 1,625 ms
210,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def MI(): return map(int, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
inf = 10**16

import numpy as np
from scipy.sparse.csgraph import dijkstra
from scipy.sparse import csr_matrix

n, m, l = MI()
l -= 1
tt = np.array(LI(), dtype="i8")

if np.sum(tt == 0) >= n-1:
    print(0)
    exit()

e = np.array(LLI(m), dtype="i8").T
g = csr_matrix((e[2], e[:2]-1), (n, n))

dd = dijkstra(g, directed=False).astype("i8")

iscar = tt > 0
ans = inf
for g in range(n):
    cur = np.sum(tt*dd[g])*2+np.min(dd[l][iscar]-dd[g][iscar])
    if cur < ans: ans = cur

print(ans)
0