結果

問題 No.848 なかよし旅行
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-26 00:40:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 1,177 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-11-08 01:22:04
合計ジャッジ時間 7,145 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 571 ms
102,016 KB
testcase_01 AC 47 ms
53,376 KB
testcase_02 AC 44 ms
52,608 KB
testcase_03 AC 46 ms
52,608 KB
testcase_04 AC 46 ms
52,608 KB
testcase_05 AC 47 ms
52,992 KB
testcase_06 AC 61 ms
62,720 KB
testcase_07 AC 46 ms
53,248 KB
testcase_08 AC 103 ms
76,544 KB
testcase_09 AC 115 ms
77,184 KB
testcase_10 AC 101 ms
76,928 KB
testcase_11 AC 254 ms
80,640 KB
testcase_12 AC 267 ms
81,536 KB
testcase_13 AC 286 ms
82,048 KB
testcase_14 AC 228 ms
79,360 KB
testcase_15 AC 294 ms
83,328 KB
testcase_16 AC 351 ms
86,784 KB
testcase_17 AC 288 ms
83,200 KB
testcase_18 AC 242 ms
80,256 KB
testcase_19 AC 252 ms
79,744 KB
testcase_20 AC 142 ms
77,824 KB
testcase_21 AC 295 ms
83,456 KB
testcase_22 AC 224 ms
86,016 KB
testcase_23 AC 191 ms
77,184 KB
testcase_24 AC 44 ms
52,480 KB
testcase_25 AC 350 ms
86,272 KB
testcase_26 AC 43 ms
52,480 KB
testcase_27 AC 44 ms
52,224 KB
testcase_28 AC 43 ms
52,864 KB
testcase_29 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**18


N, M, P, Q, T = map(int, input().split())
P -= 1
Q -= 1
G = [[] for _ in range(N)]
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))


def dijkstra(start):
    dist = [inf] * N
    dist[start] = 0
    que = [(0, start)]
    while que:
        ds, s = heapq.heappop(que)
        if dist[s] < ds:
            continue
        for t, dt in G[s]:
            if dist[t] > ds + dt:
                dist[t] = ds + dt
                heapq.heappush(que, (ds + dt, t))
    return dist


dist0 = dijkstra(0)
distP = dijkstra(P)
distQ = dijkstra(Q)

if dist0[P] + dist0[Q] + distP[Q] <= T:
    print(T)
    exit()

if 2 * max(dist0[P], dist0[Q]) > T:
    print(-1)
    exit()

ans = 0
for i in range(N):
    go = dist0[i]
    to_p = distP[i]
    to_q = distQ[i]
    for j in range(N):
        from_p = distP[j]
        from_q = distQ[j]
        back = dist0[j]
        separate = max(to_p + from_p, to_q + from_q)
        if go + back + separate <= T:
            ans = max(ans, T - separate)

print(ans)
0