結果

問題 No.17 2つの地点に泊まりたい
ユーザー convexineqconvexineq
提出日時 2020-12-06 04:11:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 626 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 72,724 KB
最終ジャッジ日時 2024-09-17 02:08:51
合計ジャッジ時間 2,483 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,248 KB
testcase_01 AC 34 ms
53,212 KB
testcase_02 AC 37 ms
59,344 KB
testcase_03 AC 42 ms
63,228 KB
testcase_04 AC 42 ms
62,624 KB
testcase_05 AC 54 ms
67,572 KB
testcase_06 AC 49 ms
65,820 KB
testcase_07 AC 45 ms
63,592 KB
testcase_08 AC 64 ms
72,476 KB
testcase_09 AC 65 ms
72,724 KB
testcase_10 AC 45 ms
63,548 KB
testcase_11 AC 48 ms
64,344 KB
testcase_12 AC 36 ms
53,436 KB
testcase_13 AC 34 ms
52,660 KB
testcase_14 AC 35 ms
52,868 KB
testcase_15 AC 35 ms
53,008 KB
testcase_16 AC 35 ms
52,860 KB
testcase_17 AC 42 ms
59,948 KB
testcase_18 AC 46 ms
62,260 KB
testcase_19 AC 46 ms
61,720 KB
testcase_20 AC 41 ms
59,792 KB
testcase_21 AC 39 ms
59,668 KB
testcase_22 AC 47 ms
62,544 KB
testcase_23 AC 56 ms
65,908 KB
testcase_24 AC 54 ms
64,952 KB
testcase_25 AC 39 ms
58,228 KB
testcase_26 AC 56 ms
67,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Floyd_Warshall(dist):
    n = len(dist)
    for k in range(n):
        for i in range(n):
            for j in range(n):
                dist[i][j] = min(dist[i][j], dist[i][k]+ dist[k][j])

n = int(input())
s = [0]*n
for i in range(n):
    s[i] = int(input())
INF = 10**9
dist = [[INF]*n for _ in range(n)]
m = int(input())
for _ in range(m):
    a,b,c = map(int,input().split())
    dist[a][b] = dist[b][a] = c

Floyd_Warshall(dist)

ans = INF
for i in range(1,n-1):
    for j in range(1,n-1):
        if i==j: continue
        d = dist[0][i] + dist[i][j] + dist[j][n-1] + s[i] + s[j]
        ans = min(ans,d)
print(ans)
0