結果

問題 No.17 2つの地点に泊まりたい
ユーザー matsu7874matsu7874
提出日時 2015-10-26 10:15:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 746 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-23 02:07:51
合計ジャッジ時間 2,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 35 ms
10,880 KB
testcase_03 AC 77 ms
11,008 KB
testcase_04 AC 38 ms
10,880 KB
testcase_05 AC 55 ms
10,880 KB
testcase_06 AC 49 ms
11,008 KB
testcase_07 AC 43 ms
11,008 KB
testcase_08 AC 73 ms
10,880 KB
testcase_09 AC 77 ms
10,880 KB
testcase_10 AC 65 ms
10,880 KB
testcase_11 AC 76 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 32 ms
11,008 KB
testcase_17 AC 37 ms
11,008 KB
testcase_18 AC 66 ms
10,880 KB
testcase_19 AC 62 ms
10,880 KB
testcase_20 AC 35 ms
10,880 KB
testcase_21 AC 33 ms
11,008 KB
testcase_22 AC 69 ms
10,880 KB
testcase_23 AC 56 ms
10,880 KB
testcase_24 AC 68 ms
11,008 KB
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 68 ms
10,880 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