結果

問題 No.2805 Go to School
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-04 08:05:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 775 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 157,536 KB
最終ジャッジ日時 2024-07-04 21:14:42
合計ジャッジ時間 17,708 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,984 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 668 ms
118,912 KB
testcase_05 AC 415 ms
98,888 KB
testcase_06 AC 366 ms
98,280 KB
testcase_07 AC 562 ms
122,468 KB
testcase_08 AC 392 ms
97,892 KB
testcase_09 AC 338 ms
100,900 KB
testcase_10 AC 841 ms
140,552 KB
testcase_11 AC 593 ms
114,076 KB
testcase_12 AC 721 ms
127,664 KB
testcase_13 AC 215 ms
89,096 KB
testcase_14 AC 39 ms
52,992 KB
testcase_15 AC 43 ms
52,352 KB
testcase_16 AC 39 ms
52,608 KB
testcase_17 AC 550 ms
107,152 KB
testcase_18 AC 390 ms
97,060 KB
testcase_19 AC 741 ms
122,504 KB
testcase_20 AC 963 ms
141,840 KB
testcase_21 AC 514 ms
106,532 KB
testcase_22 AC 726 ms
119,500 KB
testcase_23 AC 665 ms
117,132 KB
testcase_24 AC 336 ms
98,052 KB
testcase_25 AC 866 ms
153,048 KB
testcase_26 AC 453 ms
133,760 KB
testcase_27 AC 99 ms
85,760 KB
testcase_28 AC 114 ms
86,460 KB
testcase_29 AC 240 ms
111,232 KB
testcase_30 AC 482 ms
103,844 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import*
N,M,L,S,E=map(int,input().split())
gr=[[] for i in range(N*2)]
edge=[]
for i in range(M):
    a,b,t=map(int,input().split())
    gr[(a-1)*2].append(((b-1)*2,t))
    gr[(b-1)*2].append(((a-1)*2,t))
    gr[(a-1)*2+1].append(((b-1)*2+1,t))
    gr[(b-1)*2+1].append(((a-1)*2+1,t))
T=list(map(int,input().split()))
for t in T:
    gr[(t-1)*2].append(((t-1)*2+1,-1))
dist=[1<<60]*N*2
dist[0]=0
vert=[(0,0)]
while vert:
    dis,pos=heappop(vert)
    if pos==N*2-1:
        continue
    for t,c in gr[pos]:
        nxt=dis+c
        if c==-1:
            if dis>=S+E:
                continue
            nxt=max(S,dis)+1
        if dist[t]>nxt:
            dist[t]=nxt
            heappush(vert,(nxt,t))
if dist[-1]>=1<<60:
    print(-1)
else:
    print(dist[-1])
0