結果

問題 No.17 2つの地点に泊まりたい
ユーザー lloyzlloyz
提出日時 2022-03-12 12:43:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 926 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,948 KB
最終ジャッジ日時 2024-09-16 18:44:54
合計ジャッジ時間 3,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 45 ms
54,656 KB
testcase_03 AC 98 ms
76,800 KB
testcase_04 AC 90 ms
76,800 KB
testcase_05 AC 122 ms
77,312 KB
testcase_06 AC 111 ms
76,504 KB
testcase_07 AC 109 ms
76,340 KB
testcase_08 AC 141 ms
77,696 KB
testcase_09 AC 139 ms
77,948 KB
testcase_10 AC 117 ms
76,724 KB
testcase_11 AC 115 ms
76,756 KB
testcase_12 AC 45 ms
53,632 KB
testcase_13 AC 43 ms
54,528 KB
testcase_14 AC 45 ms
54,272 KB
testcase_15 AC 43 ms
54,144 KB
testcase_16 AC 44 ms
54,272 KB
testcase_17 AC 48 ms
55,552 KB
testcase_18 AC 91 ms
76,928 KB
testcase_19 AC 74 ms
71,296 KB
testcase_20 AC 45 ms
54,528 KB
testcase_21 AC 43 ms
54,400 KB
testcase_22 AC 98 ms
76,544 KB
testcase_23 AC 124 ms
77,568 KB
testcase_24 AC 121 ms
76,344 KB
testcase_25 AC 54 ms
62,464 KB
testcase_26 AC 130 ms
76,800 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