結果

問題 No.17 2つの地点に泊まりたい
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-14 10:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 641 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 77,420 KB
最終ジャッジ日時 2024-06-30 11:33:32
合計ジャッジ時間 2,972 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,668 KB
testcase_01 AC 41 ms
54,988 KB
testcase_02 AC 49 ms
63,456 KB
testcase_03 AC 64 ms
68,420 KB
testcase_04 AC 54 ms
63,368 KB
testcase_05 AC 74 ms
72,084 KB
testcase_06 AC 69 ms
69,924 KB
testcase_07 AC 62 ms
66,152 KB
testcase_08 AC 90 ms
77,420 KB
testcase_09 AC 91 ms
76,864 KB
testcase_10 AC 71 ms
70,476 KB
testcase_11 AC 76 ms
72,584 KB
testcase_12 AC 42 ms
53,688 KB
testcase_13 AC 42 ms
54,000 KB
testcase_14 AC 42 ms
54,040 KB
testcase_15 AC 41 ms
54,740 KB
testcase_16 AC 42 ms
53,948 KB
testcase_17 AC 52 ms
64,420 KB
testcase_18 AC 65 ms
68,640 KB
testcase_19 AC 63 ms
68,360 KB
testcase_20 AC 54 ms
63,732 KB
testcase_21 AC 47 ms
62,252 KB
testcase_22 AC 70 ms
69,364 KB
testcase_23 AC 77 ms
69,872 KB
testcase_24 AC 75 ms
71,500 KB
testcase_25 AC 49 ms
61,872 KB
testcase_26 AC 76 ms
71,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
S = [int(input()) for i in range(n)]
inf = 10**20
dis = [[inf]*n for i in range(n)]
m = int(input())
for i in range(m):
    a,b,c = map(int,input().split())
    dis[a][b] = c
    dis[b][a] = c

for i in range(n):
    dis[i][i] = 0

for k in range(n):
    for i in range(n):
        for j in range(n):
            if dis[i][k] != inf and dis[k][j] != inf:
                dis[i][j] = min(dis[i][j],dis[i][k]+dis[k][j])

ans = inf
for i in range(1,n-1):
    for j in range(1,n-1):
        if i == j:
            continue
        ans = min(ans,S[i]+S[j]+dis[0][i]+dis[j][-1]+dis[i][j])
print(ans)
0