結果

問題 No.2805 Go to School
ユーザー るこーそーるこーそー
提出日時 2024-09-27 21:59:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 912 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 121,396 KB
最終ジャッジ日時 2024-09-27 21:59:35
合計ジャッジ時間 15,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,796 KB
testcase_01 AC 36 ms
53,872 KB
testcase_02 AC 35 ms
53,008 KB
testcase_03 AC 36 ms
53,736 KB
testcase_04 AC 253 ms
101,112 KB
testcase_05 AC 406 ms
100,016 KB
testcase_06 AC 322 ms
89,436 KB
testcase_07 AC 262 ms
88,316 KB
testcase_08 AC 342 ms
98,264 KB
testcase_09 AC 313 ms
89,216 KB
testcase_10 AC 245 ms
88,940 KB
testcase_11 AC 912 ms
121,232 KB
testcase_12 AC 608 ms
103,732 KB
testcase_13 AC 840 ms
114,168 KB
testcase_14 AC 204 ms
83,576 KB
testcase_15 AC 37 ms
53,560 KB
testcase_16 AC 36 ms
53,040 KB
testcase_17 AC 36 ms
54,140 KB
testcase_18 AC 493 ms
97,028 KB
testcase_19 AC 355 ms
89,692 KB
testcase_20 AC 575 ms
105,112 KB
testcase_21 AC 782 ms
117,408 KB
testcase_22 AC 399 ms
96,784 KB
testcase_23 AC 610 ms
103,676 KB
testcase_24 AC 579 ms
103,760 KB
testcase_25 AC 258 ms
89,544 KB
testcase_26 AC 601 ms
121,396 KB
testcase_27 AC 252 ms
108,060 KB
testcase_28 AC 59 ms
75,400 KB
testcase_29 AC 77 ms
84,612 KB
testcase_30 AC 125 ms
99,752 KB
testcase_31 AC 314 ms
92,700 KB
testcase_32 AC 477 ms
119,080 KB
testcase_33 AC 663 ms
118,396 KB
testcase_34 AC 56 ms
67,580 KB
testcase_35 AC 65 ms
67,988 KB
testcase_36 AC 347 ms
91,668 KB
testcase_37 AC 308 ms
92,904 KB
testcase_38 AC 500 ms
104,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush,heappop

def dijkstra(v):
  que=[(0,v)]
  cost=[float('INF')]*n
  cost[v]=0
  while que:
    c,v=heappop(que)
    if c>cost[v]:continue
    for nc,nv in graph[v]:
      if cost[nv]>cost[v]+nc:
        cost[nv]=cost[v]+nc
        heappush(que,(cost[nv],nv))
  return cost

import sys
input=sys.stdin.readline

n,m,l,s,e=map(int,input().split())
graph=[[] for _ in range(n)]
for _ in range(m):
  a,b,c=map(int,input().split())
  a,b=a-1,b-1
  graph[a].append((c,b))
  graph[b].append((c,a))
T=list(map(lambda x:int(x)-1,input().split()))

dist1=dijkstra(0)
distn=dijkstra(n-1)

ans=float('INF')
for t in T:
    if dist1[t]>=s+e:continue
    ans=min(ans,max(s,dist1[t])+1+distn[t])

print(ans if ans!=float('INF') else -1)
0