結果

問題 No.848 なかよし旅行
ユーザー tpynerivertpyneriver
提出日時 2019-07-05 22:11:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 641 ms / 2,000 ms
コード長 1,085 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 102,844 KB
最終ジャッジ日時 2024-11-08 00:50:04
合計ジャッジ時間 8,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 411 ms
100,904 KB
testcase_01 AC 54 ms
60,032 KB
testcase_02 AC 44 ms
52,352 KB
testcase_03 AC 45 ms
53,120 KB
testcase_04 AC 45 ms
52,864 KB
testcase_05 AC 46 ms
52,608 KB
testcase_06 AC 72 ms
66,944 KB
testcase_07 AC 52 ms
59,776 KB
testcase_08 AC 105 ms
76,256 KB
testcase_09 AC 141 ms
77,396 KB
testcase_10 AC 118 ms
76,692 KB
testcase_11 AC 299 ms
83,620 KB
testcase_12 AC 327 ms
87,040 KB
testcase_13 AC 382 ms
89,532 KB
testcase_14 AC 252 ms
79,460 KB
testcase_15 AC 378 ms
89,544 KB
testcase_16 AC 505 ms
102,844 KB
testcase_17 AC 376 ms
91,284 KB
testcase_18 AC 290 ms
83,072 KB
testcase_19 AC 286 ms
81,340 KB
testcase_20 AC 214 ms
77,912 KB
testcase_21 AC 407 ms
95,792 KB
testcase_22 AC 342 ms
100,616 KB
testcase_23 AC 188 ms
76,892 KB
testcase_24 AC 45 ms
52,480 KB
testcase_25 AC 641 ms
97,432 KB
testcase_26 AC 44 ms
52,608 KB
testcase_27 AC 45 ms
52,608 KB
testcase_28 AC 45 ms
52,224 KB
testcase_29 AC 44 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappop as hpp, heappush as hp
def dijkstra(N, s, Edge):
    inf = 10**10
    dist = [inf] * N
    Q = [(0, s)]
    decided = set()
    for _ in range(N):
        while True:
            dn, vn = hpp(Q)
            if vn not in decided:
                decided.add(vn)
                dist[vn] = dn
                break
        for vf, df in Edge[vn]:
            if vf not in decided:
                hp(Q, (dn + df, vf))
    return dist


N, M, P, Q, T = map(int, input().split())
P -= 1
Q -= 1
Edge = [[] for _ in range(N)]
for _ in range(M):
    a, b, c = map(int, sys.stdin.readline().split())
    a -= 1
    b -= 1
    Edge[a].append((b, c))
    Edge[b].append((a, c))

dist0 = dijkstra(N, 0, Edge)
distP = dijkstra(N, P, Edge)
distQ = dijkstra(N, Q, Edge)


ans = -1
for i in range(N):
    for j in range(N):
        t = dist0[i] + dist0[j] + max(distP[i]+distP[j], distQ[i]+distQ[j])
        if t > T:
            continue

        ans = max(ans, dist0[i] + dist0[j] + T - t)
if dist0[P] + distP[Q] + dist0[Q] <= T:
    ans = T
print(ans)        
0