結果

問題 No.848 なかよし旅行
ユーザー lloyzlloyz
提出日時 2024-01-10 00:01:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 1,375 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 98,540 KB
最終ジャッジ日時 2024-09-27 20:06:50
合計ジャッジ時間 8,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
98,540 KB
testcase_01 AC 54 ms
62,892 KB
testcase_02 AC 44 ms
55,052 KB
testcase_03 AC 46 ms
55,776 KB
testcase_04 AC 46 ms
55,804 KB
testcase_05 AC 46 ms
55,516 KB
testcase_06 AC 63 ms
67,816 KB
testcase_07 AC 51 ms
61,772 KB
testcase_08 AC 97 ms
77,352 KB
testcase_09 AC 120 ms
78,036 KB
testcase_10 AC 105 ms
77,004 KB
testcase_11 AC 256 ms
81,112 KB
testcase_12 AC 290 ms
82,396 KB
testcase_13 AC 315 ms
82,800 KB
testcase_14 AC 237 ms
79,756 KB
testcase_15 AC 310 ms
83,488 KB
testcase_16 AC 399 ms
88,224 KB
testcase_17 AC 309 ms
84,292 KB
testcase_18 AC 254 ms
80,736 KB
testcase_19 AC 255 ms
80,488 KB
testcase_20 AC 209 ms
78,716 KB
testcase_21 AC 334 ms
86,008 KB
testcase_22 AC 257 ms
87,696 KB
testcase_23 AC 202 ms
78,540 KB
testcase_24 AC 45 ms
55,616 KB
testcase_25 AC 405 ms
88,428 KB
testcase_26 AC 44 ms
54,436 KB
testcase_27 AC 44 ms
55,088 KB
testcase_28 AC 45 ms
54,676 KB
testcase_29 AC 44 ms
56,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappop, heappush

n, m, p, q, t = map(int, input().split())
p -= 1
q -= 1
G = defaultdict(list)
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append((b, c))
    G[b].append((a, c))

INF = 10**18
C0 = [INF for _ in range(n)]
Cp = [INF for _ in range(n)]
Cq = [INF for _ in range(n)]
C0[0] = 0
Cp[p] = 0
Cq[q] = 0
H = [(0, 0)]
while H:
    cc, cp = heappop(H)
    if cc > Cp[cp]:
        continue
    for np, dc in G[cp]:
        nc = cc + dc
        if nc >= C0[np]:
            continue
        C0[np] = nc
        heappush(H, (nc, np))
H = [(0, p)]
while H:
    cc, cp = heappop(H)
    if cc > Cp[cp]:
        continue
    for np, dc in G[cp]:
        nc = cc + dc
        if nc >= Cp[np]:
            continue
        Cp[np] = nc
        heappush(H, (nc, np))
H = [(0, q)]
while H:
    cc, cp = heappop(H)
    if cc > Cq[cp]:
        continue
    for np, dc in G[cp]:
        nc = cc + dc
        if nc >= Cq[np]:
            continue
        Cq[np] = nc
        heappush(H, (nc, np))

ans = -1
if C0[p] + Cp[q] + Cq[0] <= t:
    ans = t
for i in range(n):
    for j in range(n):
        tt = C0[i] + max(Cp[i] + Cp[j], Cq[i] + Cq[j]) + C0[j]
        if tt > t:
            continue
        res = max(Cp[i] + Cp[j], Cq[i] + Cq[j])
        ans = max(ans, t - res)
print(ans)
0