結果

問題 No.2805 Go to School
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-04 08:04:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,521 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 175,668 KB
最終ジャッジ日時 2024-07-16 01:36:30
合計ジャッジ時間 27,375 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 606 ms
123,344 KB
testcase_05 AC 1,490 ms
165,820 KB
testcase_06 AC 719 ms
116,036 KB
testcase_07 AC 810 ms
121,204 KB
testcase_08 AC 1,521 ms
175,668 KB
testcase_09 AC 695 ms
113,684 KB
testcase_10 AC 547 ms
113,048 KB
testcase_11 AC 1,044 ms
147,904 KB
testcase_12 AC 755 ms
121,372 KB
testcase_13 AC 1,094 ms
139,864 KB
testcase_14 AC 236 ms
88,704 KB
testcase_15 AC 41 ms
52,736 KB
testcase_16 AC 42 ms
52,096 KB
testcase_17 AC 42 ms
52,480 KB
testcase_18 AC 982 ms
129,032 KB
testcase_19 AC 579 ms
103,728 KB
testcase_20 AC 1,472 ms
161,144 KB
testcase_21 AC 1,324 ms
152,396 KB
testcase_22 AC 645 ms
111,672 KB
testcase_23 AC 1,135 ms
138,772 KB
testcase_24 AC 1,174 ms
138,216 KB
testcase_25 AC 446 ms
100,352 KB
testcase_26 AC 1,233 ms
159,800 KB
testcase_27 AC 504 ms
133,632 KB
testcase_28 AC 107 ms
85,632 KB
testcase_29 AC 118 ms
85,632 KB
testcase_30 AC 240 ms
111,104 KB
testcase_31 AC 738 ms
112,036 KB
testcase_32 AC 1,118 ms
171,724 KB
testcase_33 AC 1,304 ms
160,200 KB
testcase_34 AC 90 ms
75,264 KB
testcase_35 AC 85 ms
73,472 KB
testcase_36 AC 559 ms
105,620 KB
testcase_37 AC 495 ms
103,864 KB
testcase_38 AC 634 ms
123,136 KB
権限があれば一括ダウンロードができます

ソースコード

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
vert=[(0,0)]
while vert:
    dis,pos=heappop(vert)
    if dist[pos]!=1<<60:
        continue
    dist[pos]=dis
    for t,c in gr[pos]:
        nxt=dis+c
        if c==-1:
            if dis>=S+E:
                continue
            nxt=max(S,dis)+1
        heappush(vert,(nxt,t))
if dist[-1]>=1<<60:
    print(-1)
else:
    print(dist[-1])
0