結果

問題 No.17 2つの地点に泊まりたい
ユーザー lloyzlloyz
提出日時 2022-03-12 12:43:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 926 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-09-16 18:45:07
合計ジャッジ時間 2,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 36 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 60 ms
11,136 KB
testcase_06 AC 48 ms
11,008 KB
testcase_07 AC 42 ms
11,008 KB
testcase_08 AC 79 ms
10,880 KB
testcase_09 AC 81 ms
11,008 KB
testcase_10 AC 47 ms
10,752 KB
testcase_11 AC 54 ms
11,008 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 33 ms
11,008 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 27 ms
10,880 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 33 ms
11,008 KB
testcase_23 AC 53 ms
10,880 KB
testcase_24 AC 51 ms
10,880 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 66 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappop, heappush

n = int(input())
P = [int(input()) for _ in range(n)]
m = int(input())
Edge = defaultdict(list)
for _ in range(m):
    a, b, c = map(int, input().split())
    Edge[a].append((b, c))
    Edge[b].append((a, c))

INF = 10**18
C = [[INF for _ in range(n)] for _ in range(n)]
for i in range(n):
    C[i][i] = 0
    Heap = [(0, i, -1)]
    while Heap:
        cost, curr, prev = heappop(Heap)
        if cost > C[i][curr]:
            continue
        for np, d in Edge[curr]:
            if np == prev:
                continue
            if cost + d > C[i][np]:
                continue
            C[i][np] = cost + d
            heappush(Heap, (cost + d, np, curr))

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