結果

問題 No.2805 Go to School
ユーザー るこーそーるこーそー
提出日時 2024-09-28 00:00:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,930 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 182,528 KB
最終ジャッジ日時 2024-09-28 00:01:04
合計ジャッジ時間 27,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 41 ms
52,992 KB
testcase_03 AC 39 ms
52,992 KB
testcase_04 AC 411 ms
124,544 KB
testcase_05 AC 809 ms
125,064 KB
testcase_06 AC 702 ms
105,204 KB
testcase_07 AC 483 ms
101,292 KB
testcase_08 AC 627 ms
124,800 KB
testcase_09 AC 591 ms
103,884 KB
testcase_10 AC 372 ms
102,144 KB
testcase_11 AC 1,269 ms
154,672 KB
testcase_12 AC 791 ms
122,540 KB
testcase_13 AC 1,079 ms
138,016 KB
testcase_14 AC 251 ms
90,880 KB
testcase_15 AC 40 ms
52,864 KB
testcase_16 AC 40 ms
52,736 KB
testcase_17 AC 39 ms
52,480 KB
testcase_18 AC 920 ms
118,460 KB
testcase_19 AC 640 ms
104,740 KB
testcase_20 AC 1,289 ms
136,852 KB
testcase_21 AC 1,644 ms
164,756 KB
testcase_22 AC 839 ms
118,580 KB
testcase_23 AC 1,143 ms
134,272 KB
testcase_24 AC 1,198 ms
132,604 KB
testcase_25 AC 563 ms
105,660 KB
testcase_26 AC 1,930 ms
175,608 KB
testcase_27 AC 571 ms
140,928 KB
testcase_28 AC 107 ms
87,852 KB
testcase_29 AC 124 ms
88,448 KB
testcase_30 AC 293 ms
113,852 KB
testcase_31 AC 911 ms
114,344 KB
testcase_32 AC 1,347 ms
182,528 KB
testcase_33 AC 1,650 ms
162,544 KB
testcase_34 AC 61 ms
64,896 KB
testcase_35 AC 60 ms
65,152 KB
testcase_36 AC 702 ms
110,196 KB
testcase_37 AC 600 ms
107,532 KB
testcase_38 AC 671 ms
129,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 nd>s+e:continue
            elif T[nv] and not ok:nd=max(nd-1,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