結果

問題 No.2805 Go to School
ユーザー るこーそーるこーそー
提出日時 2024-09-27 21:58:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,275 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 122,444 KB
最終ジャッジ日時 2024-09-27 21:58:29
合計ジャッジ時間 22,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,696 KB
testcase_01 AC 41 ms
52,676 KB
testcase_02 AC 41 ms
54,432 KB
testcase_03 AC 41 ms
54,152 KB
testcase_04 AC 355 ms
101,392 KB
testcase_05 AC 608 ms
100,240 KB
testcase_06 AC 462 ms
90,392 KB
testcase_07 AC 375 ms
89,080 KB
testcase_08 AC 474 ms
100,392 KB
testcase_09 AC 472 ms
89,800 KB
testcase_10 AC 369 ms
89,544 KB
testcase_11 AC 1,275 ms
121,016 KB
testcase_12 AC 863 ms
103,404 KB
testcase_13 AC 1,136 ms
115,164 KB
testcase_14 AC 267 ms
85,020 KB
testcase_15 AC 41 ms
53,268 KB
testcase_16 AC 41 ms
52,616 KB
testcase_17 AC 41 ms
54,376 KB
testcase_18 AC 652 ms
97,300 KB
testcase_19 AC 510 ms
90,412 KB
testcase_20 AC 874 ms
106,220 KB
testcase_21 AC 1,080 ms
117,648 KB
testcase_22 AC 580 ms
97,712 KB
testcase_23 AC 839 ms
104,304 KB
testcase_24 AC 842 ms
103,504 KB
testcase_25 AC 291 ms
90,348 KB
testcase_26 AC 755 ms
122,444 KB
testcase_27 AC 353 ms
110,136 KB
testcase_28 AC 93 ms
83,384 KB
testcase_29 AC 105 ms
83,480 KB
testcase_30 AC 189 ms
101,244 KB
testcase_31 AC 388 ms
93,352 KB
testcase_32 AC 602 ms
121,200 KB
testcase_33 AC 893 ms
118,112 KB
testcase_34 AC 65 ms
68,392 KB
testcase_35 AC 69 ms
69,016 KB
testcase_36 AC 481 ms
91,660 KB
testcase_37 AC 431 ms
93,676 KB
testcase_38 AC 691 ms
105,872 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

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