結果

問題 No.2805 Go to School
ユーザー YuuuTYuuuT
提出日時 2024-07-12 22:12:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,125 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 208,404 KB
最終ジャッジ日時 2024-07-12 22:13:02
合計ジャッジ時間 22,667 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,656 KB
testcase_01 AC 43 ms
54,528 KB
testcase_02 AC 44 ms
55,040 KB
testcase_03 AC 45 ms
54,784 KB
testcase_04 TLE -
testcase_05 AC 306 ms
93,312 KB
testcase_06 AC 813 ms
120,508 KB
testcase_07 AC 1,395 ms
178,424 KB
testcase_08 AC 506 ms
102,528 KB
testcase_09 AC 194 ms
91,776 KB
testcase_10 AC 484 ms
145,536 KB
testcase_11 AC 328 ms
105,856 KB
testcase_12 AC 418 ms
113,640 KB
testcase_13 AC 121 ms
90,476 KB
testcase_14 AC 42 ms
54,912 KB
testcase_15 AC 43 ms
54,144 KB
testcase_16 AC 43 ms
54,400 KB
testcase_17 AC 442 ms
104,584 KB
testcase_18 AC 345 ms
99,748 KB
testcase_19 AC 1,190 ms
136,496 KB
testcase_20 AC 832 ms
153,728 KB
testcase_21 AC 327 ms
112,484 KB
testcase_22 AC 440 ms
116,352 KB
testcase_23 AC 874 ms
123,416 KB
testcase_24 AC 501 ms
109,084 KB
testcase_25 AC 683 ms
166,820 KB
testcase_26 AC 432 ms
150,892 KB
testcase_27 AC 85 ms
83,840 KB
testcase_28 AC 97 ms
85,416 KB
testcase_29 AC 202 ms
118,792 KB
testcase_30 AC 672 ms
110,760 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 72 ms
70,784 KB
testcase_34 AC 69 ms
69,504 KB
testcase_35 AC 516 ms
104,796 KB
testcase_36 AC 436 ms
109,372 KB
testcase_37 AC 337 ms
129,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#//////////////////////////////////
N,M,L,S,E = ms()
G = [set() for _ in range(N+1)]
for _ in range(M):
  u,v,c = ms()
  if u==v: continue
  G[u].add((v,c))
  G[v].add((u,c))
T = set(li())
H = []
heappush(H,(0,1,0))
dist = [[inf,inf] for _ in range(N+1)]
while H:
  c,v,f = heappop(H)
  if v==N and f==1:
    print(c)
    exit()
  if dist[v][f]<=c: continue
  dist[v][f] = c
  for v2,c2 in G[v]:
    if f==0 and v2 in T and c+c2<=S+E:
      if dist[v2][1]<=max(c+c2,S)+1: continue
      heappush(H,(max(c+c2,S)+1,v2,1))
    if f==0 and c+c2>S+E: continue
    if dist[v2][f]<=c+c2: continue
    heappush(H,(c+c2,v2,f))
print(-1)
  
0