結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 339 ms
124,032 KB
testcase_05 AC 699 ms
123,968 KB
testcase_06 AC 651 ms
105,748 KB
testcase_07 AC 420 ms
101,120 KB
testcase_08 AC 525 ms
122,032 KB
testcase_09 AC 535 ms
103,092 KB
testcase_10 AC 280 ms
100,624 KB
testcase_11 AC 1,187 ms
155,072 KB
testcase_12 AC 744 ms
121,712 KB
testcase_13 AC 1,021 ms
138,236 KB
testcase_14 AC 229 ms
89,888 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 40 ms
52,736 KB
testcase_17 AC 39 ms
52,736 KB
testcase_18 AC 874 ms
117,332 KB
testcase_19 AC 588 ms
104,112 KB
testcase_20 AC 1,165 ms
136,240 KB
testcase_21 AC 1,547 ms
163,756 KB
testcase_22 AC 838 ms
117,900 KB
testcase_23 AC 1,096 ms
132,592 KB
testcase_24 AC 1,179 ms
132,456 KB
testcase_25 AC 530 ms
104,836 KB
testcase_26 AC 1,821 ms
172,200 KB
testcase_27 AC 500 ms
139,204 KB
testcase_28 AC 93 ms
88,448 KB
testcase_29 AC 103 ms
89,728 KB
testcase_30 AC 198 ms
113,752 KB
testcase_31 AC 793 ms
113,960 KB
testcase_32 AC 1,229 ms
178,624 KB
testcase_33 AC 1,575 ms
161,576 KB
testcase_34 AC 58 ms
63,496 KB
testcase_35 AC 57 ms
63,872 KB
testcase_36 AC 698 ms
110,144 KB
testcase_37 AC 530 ms
107,028 KB
testcase_38 AC 650 ms
127,872 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))
  
T=[False]*2*n
for t in map(int,input().split()):
    t-=1
    graph[2*t].append((1,2*t+1))
    graph[2*t+1].append((0,2*t))
    T[2*t+1]=True

dist=[float('INF')]*2*n
dist[0]=0
que=[(0,0,False)]#(dist,vertex,トイレに既に行ったか)
while que:
    d,v,ok=heappop(que)
    if d>dist[v]:continue
    for nc,nv in graph[v]:
        nd=d+nc
        if nv%2==1:
            if T[nv] and not ok and d>=s+e:continue
            elif T[nv] and not ok:nd=max(d,s)+1
        if dist[nv]>nd:
            dist[nv]=nd
            heappush(que,(nd,nv,ok or T[nv]))

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