結果

問題 No.848 なかよし旅行
ユーザー O2MTO2MT
提出日時 2020-08-31 11:29:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 664 ms / 2,000 ms
コード長 1,016 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,040 KB
最終ジャッジ日時 2024-11-08 01:19:33
合計ジャッジ時間 8,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 664 ms
104,040 KB
testcase_01 AC 48 ms
53,632 KB
testcase_02 AC 45 ms
52,352 KB
testcase_03 AC 45 ms
52,864 KB
testcase_04 AC 46 ms
52,864 KB
testcase_05 AC 45 ms
53,120 KB
testcase_06 AC 65 ms
64,000 KB
testcase_07 AC 47 ms
53,632 KB
testcase_08 AC 112 ms
76,784 KB
testcase_09 AC 137 ms
77,340 KB
testcase_10 AC 116 ms
76,672 KB
testcase_11 AC 292 ms
80,692 KB
testcase_12 AC 320 ms
82,684 KB
testcase_13 AC 338 ms
84,460 KB
testcase_14 AC 289 ms
80,248 KB
testcase_15 AC 322 ms
83,568 KB
testcase_16 AC 407 ms
89,548 KB
testcase_17 AC 338 ms
84,360 KB
testcase_18 AC 308 ms
81,480 KB
testcase_19 AC 291 ms
80,664 KB
testcase_20 AC 196 ms
78,692 KB
testcase_21 AC 360 ms
87,000 KB
testcase_22 AC 277 ms
87,552 KB
testcase_23 AC 243 ms
77,824 KB
testcase_24 AC 44 ms
52,224 KB
testcase_25 AC 504 ms
89,548 KB
testcase_26 AC 45 ms
52,736 KB
testcase_27 AC 44 ms
52,736 KB
testcase_28 AC 44 ms
52,608 KB
testcase_29 AC 44 ms
52,608 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())
l = [[] for _ in range(N+1)] 
for _ in range(M):
  a,b,c = map(int,input().split())
  l[a].append((c,b))
  l[b].append((c,a))
  
A = dijkstra(1,l)
B = dijkstra(P,l)
C = dijkstra(Q,l)
ans = -1

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

print(ans)
0