結果

問題 No.848 なかよし旅行
ユーザー kurimupykurimupy
提出日時 2020-06-19 00:24:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,158 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 51,680 KB
最終ジャッジ日時 2024-07-03 13:05:21
合計ジャッジ時間 21,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,311 ms
51,680 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 60 ms
11,008 KB
testcase_09 AC 61 ms
11,136 KB
testcase_10 AC 62 ms
11,136 KB
testcase_11 AC 1,056 ms
18,560 KB
testcase_12 AC 1,385 ms
21,120 KB
testcase_13 AC 1,685 ms
25,088 KB
testcase_14 AC 1,240 ms
13,824 KB
testcase_15 AC 1,377 ms
24,320 KB
testcase_16 TLE -
testcase_17 AC 1,370 ms
26,496 KB
testcase_18 AC 1,079 ms
17,792 KB
testcase_19 AC 1,143 ms
16,640 KB
testcase_20 AC 51 ms
12,032 KB
testcase_21 AC 1,441 ms
30,080 KB
testcase_22 AC 656 ms
31,872 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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