結果

問題 No.17 2つの地点に泊まりたい
ユーザー tnodinotnodino
提出日時 2022-02-02 06:32:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 74,112 KB
最終ジャッジ日時 2024-06-11 09:19:05
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 53 ms
61,696 KB
testcase_03 AC 77 ms
71,808 KB
testcase_04 AC 52 ms
60,800 KB
testcase_05 AC 71 ms
66,816 KB
testcase_06 AC 65 ms
64,640 KB
testcase_07 AC 60 ms
62,720 KB
testcase_08 AC 85 ms
71,808 KB
testcase_09 AC 84 ms
72,192 KB
testcase_10 AC 77 ms
69,632 KB
testcase_11 AC 83 ms
71,552 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 41 ms
52,224 KB
testcase_14 AC 40 ms
51,840 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 40 ms
52,224 KB
testcase_17 AC 58 ms
63,232 KB
testcase_18 AC 78 ms
72,960 KB
testcase_19 AC 76 ms
72,192 KB
testcase_20 AC 58 ms
62,592 KB
testcase_21 AC 49 ms
59,392 KB
testcase_22 AC 81 ms
74,112 KB
testcase_23 AC 66 ms
65,536 KB
testcase_24 AC 78 ms
69,120 KB
testcase_25 AC 47 ms
57,984 KB
testcase_26 AC 76 ms
68,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def WarshallFloyd(N, Cost):
    for k in range(N):
        for i in range(N):
            for j in range(N):
                if Cost[i][k] + Cost[k][j] < Cost[i][j]:
                    Cost[i][j] = Cost[i][k] + Cost[k][j]
    return Cost

INF = 1<<64
N = int(input())
S = list(int(input()) for _ in range(N))
M = int(input())
Cost = [[INF] * N for _ in range(N)]
for i in range(N):
    Cost[i][i] = 0
for _ in range(M):
    A,B,C = map(int,input().split())
    Cost[A][B] = C
    Cost[B][A] = C
Cost = WarshallFloyd(N, Cost)
ans = INF
for i in range(1,N-1):
    for j in range(1,N-1):
        if i != j:
            C = Cost[0][i] + Cost[i][j] + Cost[j][N-1] + S[i] + S[j]
            ans = min(ans, C)
print(ans)
0