結果

問題 No.2805 Go to School
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-03 22:29:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 983 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 153,152 KB
最終ジャッジ日時 2024-07-16 01:35:49
合計ジャッジ時間 20,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 382 ms
121,688 KB
testcase_05 AC 633 ms
118,400 KB
testcase_06 AC 431 ms
99,008 KB
testcase_07 AC 366 ms
97,920 KB
testcase_08 AC 523 ms
122,496 KB
testcase_09 AC 436 ms
98,152 KB
testcase_10 AC 326 ms
100,480 KB
testcase_11 AC 866 ms
140,672 KB
testcase_12 AC 579 ms
114,312 KB
testcase_13 AC 771 ms
127,136 KB
testcase_14 AC 224 ms
88,320 KB
testcase_15 AC 40 ms
52,352 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 40 ms
52,480 KB
testcase_18 AC 522 ms
107,852 KB
testcase_19 AC 389 ms
96,768 KB
testcase_20 AC 783 ms
122,884 KB
testcase_21 AC 983 ms
141,604 KB
testcase_22 AC 535 ms
106,656 KB
testcase_23 AC 759 ms
119,560 KB
testcase_24 AC 695 ms
117,004 KB
testcase_25 AC 360 ms
97,792 KB
testcase_26 AC 914 ms
152,936 KB
testcase_27 AC 458 ms
132,992 KB
testcase_28 AC 106 ms
84,864 KB
testcase_29 AC 117 ms
86,272 KB
testcase_30 AC 240 ms
110,720 KB
testcase_31 AC 517 ms
104,232 KB
testcase_32 AC 662 ms
153,152 KB
testcase_33 AC 909 ms
142,444 KB
testcase_34 AC 59 ms
64,384 KB
testcase_35 AC 59 ms
64,768 KB
testcase_36 AC 437 ms
100,064 KB
testcase_37 AC 417 ms
102,912 KB
testcase_38 AC 587 ms
122,880 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
dist[0]=0
vert=[(0,0)]
while vert:
    dis,pos=heappop(vert)
    if dist[pos]!=dis:
        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