結果

問題 No.2805 Go to School
ユーザー るこーそーるこーそー
提出日時 2024-09-28 00:05:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 986 ms / 2,000 ms
コード長 797 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 154,708 KB
最終ジャッジ日時 2024-09-28 00:06:04
合計ジャッジ時間 17,062 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 296 ms
122,520 KB
testcase_05 AC 503 ms
118,656 KB
testcase_06 AC 380 ms
99,048 KB
testcase_07 AC 333 ms
98,520 KB
testcase_08 AC 422 ms
119,296 KB
testcase_09 AC 366 ms
98,560 KB
testcase_10 AC 299 ms
99,868 KB
testcase_11 AC 850 ms
141,336 KB
testcase_12 AC 546 ms
115,304 KB
testcase_13 AC 694 ms
129,204 KB
testcase_14 AC 212 ms
87,920 KB
testcase_15 AC 38 ms
52,736 KB
testcase_16 AC 38 ms
52,608 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 472 ms
109,548 KB
testcase_19 AC 374 ms
98,876 KB
testcase_20 AC 709 ms
125,356 KB
testcase_21 AC 986 ms
145,092 KB
testcase_22 AC 490 ms
107,760 KB
testcase_23 AC 657 ms
119,316 KB
testcase_24 AC 650 ms
119,508 KB
testcase_25 AC 334 ms
98,524 KB
testcase_26 AC 809 ms
148,524 KB
testcase_27 AC 399 ms
133,548 KB
testcase_28 AC 116 ms
87,112 KB
testcase_29 AC 101 ms
88,296 KB
testcase_30 AC 190 ms
111,516 KB
testcase_31 AC 507 ms
105,628 KB
testcase_32 AC 634 ms
154,708 KB
testcase_33 AC 796 ms
142,168 KB
testcase_34 AC 56 ms
64,124 KB
testcase_35 AC 55 ms
63,488 KB
testcase_36 AC 416 ms
101,948 KB
testcase_37 AC 355 ms
105,344 KB
testcase_38 AC 485 ms
125,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

from heapq import heappush,heappop

n,m,l,s,e=map(int,input().split())
graph=[[] for _ in range(2*n)]
for _ in range(m):
  a,b,c=map(int,input().split())
  a,b=a-1,b-1
  graph[2*a].append((c,2*b))
  graph[2*b].append((c,2*a))
  graph[2*a+1].append((c,2*b+1))
  graph[2*b+1].append((c,2*a+1))
  
for t in map(int,input().split()):
    t-=1
    graph[2*t].append((-1,2*t+1))
    
dist=[float('INF')]*2*n
dist[0]=0
que=[(0,0)]#(dist,vertex)
while que:
    d,v=heappop(que)
    if d>dist[v]:continue
    for nc,nv in graph[v]:
        nd=d+nc
        if nc==-1:
            if d>=s+e:continue
            nd=max(s,d)+1
            
        if dist[nv]>nd:
            dist[nv]=nd
            heappush(que,(nd,nv))

print(dist[-1] if dist[-1]!=float('INF') else -1)
0