結果

問題 No.2805 Go to School
ユーザー titiatitia
提出日時 2024-07-14 04:59:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 881 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 122,640 KB
最終ジャッジ日時 2024-07-16 01:43:08
合計ジャッジ時間 14,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,752 KB
testcase_01 AC 35 ms
52,944 KB
testcase_02 AC 35 ms
53,420 KB
testcase_03 AC 37 ms
53,200 KB
testcase_04 AC 238 ms
100,248 KB
testcase_05 AC 405 ms
100,180 KB
testcase_06 AC 316 ms
88,920 KB
testcase_07 AC 264 ms
88,328 KB
testcase_08 AC 314 ms
98,032 KB
testcase_09 AC 315 ms
89,036 KB
testcase_10 AC 252 ms
89,280 KB
testcase_11 AC 881 ms
116,168 KB
testcase_12 AC 564 ms
100,876 KB
testcase_13 AC 760 ms
110,552 KB
testcase_14 AC 198 ms
84,256 KB
testcase_15 AC 38 ms
54,108 KB
testcase_16 AC 38 ms
53,056 KB
testcase_17 AC 35 ms
53,300 KB
testcase_18 AC 422 ms
94,356 KB
testcase_19 AC 349 ms
89,236 KB
testcase_20 AC 544 ms
102,476 KB
testcase_21 AC 799 ms
113,880 KB
testcase_22 AC 391 ms
94,788 KB
testcase_23 AC 570 ms
100,976 KB
testcase_24 AC 577 ms
100,892 KB
testcase_25 AC 234 ms
90,224 KB
testcase_26 AC 641 ms
122,640 KB
testcase_27 AC 270 ms
110,100 KB
testcase_28 AC 61 ms
75,680 KB
testcase_29 AC 77 ms
84,360 KB
testcase_30 AC 139 ms
102,572 KB
testcase_31 AC 281 ms
92,548 KB
testcase_32 AC 454 ms
119,512 KB
testcase_33 AC 692 ms
116,404 KB
testcase_34 AC 57 ms
65,644 KB
testcase_35 AC 56 ms
65,864 KB
testcase_36 AC 359 ms
90,696 KB
testcase_37 AC 317 ms
91,008 KB
testcase_38 AC 525 ms
100,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

N,M,L,S,E=map(int,input().split())


EDGE=[[] for i in range(N+1)]

for i in range(M):
    a,b,t=map(int,input().split())
    EDGE[a].append((b,t))
    EDGE[b].append((a,t))

T=set(map(int,input().split()))

DIS=[1<<60]*(N+1)
DIS[1]=0

Q=[(0,1)]

while Q:
    dis,fr=heappop(Q)

    if DIS[fr]!=dis:
        continue
    

    for to,cost in EDGE[fr]:
        if DIS[to]>dis+cost:
            DIS[to]=dis+cost
            heappush(Q,(DIS[to],to))

DIS2=[1<<60]*(N+1)
DIS2[N]=0

Q=[(0,N)]

while Q:
    dis,fr=heappop(Q)

    if DIS2[fr]!=dis:
        continue
    

    for to,cost in EDGE[fr]:
        if DIS2[to]>dis+cost:
            DIS2[to]=dis+cost
            heappush(Q,(DIS2[to],to))

ANS=1<<60

for i in range(1,N+1):
    if (i in T) and DIS[i]<=S+E:
        t=max(DIS[i],S)

        ANS=min(ANS,t+DIS2[i]+1)

if ANS<=(1<<50):
    print(ANS)

else:
    print(-1)
                  
0