結果

問題 No.17 2つの地点に泊まりたい
ユーザー takakintakakin
提出日時 2020-05-07 22:48:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,104 ms / 5,000 ms
コード長 539 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 56,296 KB
最終ジャッジ日時 2024-07-03 09:39:12
合計ジャッジ時間 32,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 986 ms
54,260 KB
testcase_01 AC 981 ms
55,760 KB
testcase_02 AC 988 ms
53,844 KB
testcase_03 AC 992 ms
56,064 KB
testcase_04 AC 985 ms
56,152 KB
testcase_05 AC 990 ms
56,168 KB
testcase_06 AC 991 ms
55,772 KB
testcase_07 AC 994 ms
56,296 KB
testcase_08 AC 994 ms
55,908 KB
testcase_09 AC 997 ms
56,160 KB
testcase_10 AC 992 ms
54,740 KB
testcase_11 AC 991 ms
54,252 KB
testcase_12 AC 972 ms
54,244 KB
testcase_13 AC 1,104 ms
54,508 KB
testcase_14 AC 989 ms
54,264 KB
testcase_15 AC 990 ms
53,872 KB
testcase_16 AC 989 ms
54,264 KB
testcase_17 AC 988 ms
55,820 KB
testcase_18 AC 988 ms
55,768 KB
testcase_19 AC 978 ms
55,632 KB
testcase_20 AC 994 ms
55,772 KB
testcase_21 AC 982 ms
55,760 KB
testcase_22 AC 991 ms
55,816 KB
testcase_23 AC 989 ms
55,816 KB
testcase_24 AC 989 ms
53,872 KB
testcase_25 AC 1,003 ms
55,696 KB
testcase_26 AC 989 ms
55,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
S=[int(input()) for _ in range(n)]
m=int(input())
from scipy.sparse.csgraph import floyd_warshall
table=[[0]*n for i in range(n)]
for i in range(m):
    a,b,c=map(int,input().split())
    table[a][b]=c
    table[b][a]=c
D=floyd_warshall(csgraph=table, directed=False, return_predecessors=False)
ans=float("inf")
import itertools
for i,j in itertools.combinations(range(1,n-1),2):
  ans=min(ans,S[i]+S[j]+D[i][j]+min(D[0][i]+D[j][n-1],D[0][j]+D[i][n-1]))
print(int(ans))
0