結果

問題 No.17 2つの地点に泊まりたい
ユーザー matsu7874matsu7874
提出日時 2015-10-26 10:15:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 746 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 11,040 KB
実行使用メモリ 8,380 KB
最終ジャッジ日時 2023-08-05 03:39:25
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,772 KB
testcase_01 AC 15 ms
7,968 KB
testcase_02 AC 18 ms
7,800 KB
testcase_03 AC 58 ms
8,344 KB
testcase_04 AC 20 ms
7,788 KB
testcase_05 AC 39 ms
8,348 KB
testcase_06 AC 32 ms
7,728 KB
testcase_07 AC 26 ms
7,812 KB
testcase_08 AC 60 ms
8,276 KB
testcase_09 AC 57 ms
8,208 KB
testcase_10 AC 55 ms
8,216 KB
testcase_11 AC 59 ms
8,204 KB
testcase_12 AC 16 ms
7,796 KB
testcase_13 AC 16 ms
7,796 KB
testcase_14 AC 16 ms
7,844 KB
testcase_15 AC 16 ms
7,916 KB
testcase_16 AC 15 ms
7,908 KB
testcase_17 AC 21 ms
7,812 KB
testcase_18 AC 49 ms
8,192 KB
testcase_19 AC 44 ms
7,952 KB
testcase_20 AC 20 ms
7,816 KB
testcase_21 AC 17 ms
7,788 KB
testcase_22 AC 50 ms
8,240 KB
testcase_23 AC 37 ms
8,380 KB
testcase_24 AC 44 ms
8,224 KB
testcase_25 AC 17 ms
7,792 KB
testcase_26 AC 52 ms
8,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 9999999999
N = int(input())
S = [int(input()) for i in range(N)]
M = int(input())
path = [[INF for j in range(N)] for i in range(N)]
for i in range(N):
    path[i][i] = 0
for i in range(M):
    a, b, c = map(int, input().split())
    path[a][b] = c
    path[b][a] = c
for k in range(N):
    for i in range(N):
        for j in range(N):
            if path[i][j] > path[i][k] + path[k][j]:
                path[i][j] = path[i][k] + path[k][j]
min_path = INF
for i in range(1, N - 1):
    for j in range(1, N - 1):
        if i == j:
            continue
        path_cost = path[0][i] + path[i][j] + path[j][N - 1]
        if min_path > path_cost + S[i] + S[j]:
            min_path = min(min_path, path_cost + S[i] + S[j])
print(min_path)
0