結果

問題 No.848 なかよし旅行
ユーザー kurimupykurimupy
提出日時 2020-06-19 00:23:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 1,158 bytes
コンパイル時間 658 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,756 KB
最終ジャッジ日時 2024-11-08 01:17:07
合計ジャッジ時間 7,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 617 ms
103,756 KB
testcase_01 AC 45 ms
54,400 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 44 ms
52,992 KB
testcase_04 AC 44 ms
52,992 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 58 ms
64,128 KB
testcase_07 AC 44 ms
53,760 KB
testcase_08 AC 100 ms
76,772 KB
testcase_09 AC 126 ms
77,392 KB
testcase_10 AC 102 ms
76,544 KB
testcase_11 AC 271 ms
81,212 KB
testcase_12 AC 303 ms
82,660 KB
testcase_13 AC 316 ms
84,212 KB
testcase_14 AC 282 ms
80,500 KB
testcase_15 AC 309 ms
83,484 KB
testcase_16 AC 385 ms
89,676 KB
testcase_17 AC 316 ms
84,236 KB
testcase_18 AC 286 ms
81,736 KB
testcase_19 AC 273 ms
80,540 KB
testcase_20 AC 155 ms
78,336 KB
testcase_21 AC 338 ms
86,868 KB
testcase_22 AC 259 ms
86,912 KB
testcase_23 AC 230 ms
77,952 KB
testcase_24 AC 41 ms
52,736 KB
testcase_25 AC 471 ms
89,272 KB
testcase_26 AC 41 ms
52,736 KB
testcase_27 AC 41 ms
52,480 KB
testcase_28 AC 41 ms
52,736 KB
testcase_29 AC 42 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq


def dijkstra(s, graph):
    n = len(graph)-1
    dist = [float("inf") for i in range(n+1)]
    dist[s] = 0
    pq = []
    heapq.heapify(pq)
    heapq.heappush(pq, (0, s))
    while pq:
        mini_dis, node = heapq.heappop(pq)
        if dist[node] < mini_dis:
            continue
        for w, point in graph[node]:
            if dist[point] < w:
                continue
            newlen = dist[node]+w
            if newlen < dist[point]:
                heapq.heappush(pq, (newlen, point))
                dist[point] = newlen
    return dist


N, M, P, Q, T = map(int, input().split())
graph = [[] for i in range(N+1)]
for i in range(M):
    a, b, c = map(int, input().split())
    graph[a].append((c, b))
    graph[b].append((c, a))


A = dijkstra(1, graph)
B = dijkstra(P, graph)
C = dijkstra(Q, graph)


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

if (A[P]+A[Q]+C[P]) <= T:
    print(T)
    exit()
else:
    ans = 0
    for x in range(1, N+1):
        for y in range(1, N+1):
            if A[x]+B[x]+B[y]+A[y] <= T and A[x]+C[x]+C[y]+A[y] <= T:
                ans = max(ans,T-max(B[x]+B[y],C[x]+C[y]))
    print(ans)
0