結果

問題 No.2805 Go to School
ユーザー moon17moon17
提出日時 2024-07-13 20:26:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 904 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 146,124 KB
最終ジャッジ日時 2024-07-16 01:43:04
合計ジャッジ時間 15,004 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,244 KB
testcase_01 AC 38 ms
54,040 KB
testcase_02 AC 36 ms
54,120 KB
testcase_03 AC 36 ms
54,256 KB
testcase_04 AC 319 ms
128,280 KB
testcase_05 AC 431 ms
124,500 KB
testcase_06 AC 366 ms
99,540 KB
testcase_07 AC 283 ms
98,828 KB
testcase_08 AC 357 ms
119,620 KB
testcase_09 AC 331 ms
99,096 KB
testcase_10 AC 286 ms
101,480 KB
testcase_11 AC 904 ms
142,036 KB
testcase_12 AC 559 ms
117,440 KB
testcase_13 AC 769 ms
138,708 KB
testcase_14 AC 201 ms
86,308 KB
testcase_15 AC 38 ms
54,012 KB
testcase_16 AC 38 ms
52,960 KB
testcase_17 AC 38 ms
54,208 KB
testcase_18 AC 414 ms
107,280 KB
testcase_19 AC 366 ms
96,212 KB
testcase_20 AC 567 ms
125,180 KB
testcase_21 AC 769 ms
135,432 KB
testcase_22 AC 393 ms
102,336 KB
testcase_23 AC 610 ms
118,532 KB
testcase_24 AC 578 ms
118,600 KB
testcase_25 AC 232 ms
94,256 KB
testcase_26 AC 594 ms
136,136 KB
testcase_27 AC 268 ms
114,656 KB
testcase_28 AC 69 ms
81,708 KB
testcase_29 AC 73 ms
79,832 KB
testcase_30 AC 111 ms
93,056 KB
testcase_31 AC 289 ms
100,344 KB
testcase_32 AC 515 ms
146,124 KB
testcase_33 AC 782 ms
145,936 KB
testcase_34 AC 57 ms
68,264 KB
testcase_35 AC 59 ms
69,692 KB
testcase_36 AC 351 ms
97,664 KB
testcase_37 AC 331 ms
99,064 KB
testcase_38 AC 525 ms
117,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import*
(n,m,l,s,e),*es,ts=[[*map(int,s.split())]for s in open(0)]
g=[[]for _ in range(n)]
for a,b,t in es:
  a-=1;b-=1
  g[a]+=(b,t),
  g[b]+=(a,t),
INF=1<<60
def f(x):
  s=[INF]*n
  s[x]=0
  q=[(0,x)]
  while q:
    c,p=heappop(q)
    if s[p]<c:
      continue
    for v,nc in g[p]:
      if s[v]>c+nc:
        s[v]=c+nc
        heappush(q,(s[v],v))
  return s
s0=f(0)
sn=f(n-1)
ans=INF
for i in ts:
  i-=1
  a=s0[i]+sn[i]+1
  if s0[i]<=s:
    a+=abs(s-s0[i])
  elif s+e<s0[i]:
    continue
  ans=min(ans,a)
print([-1,ans][ans<INF])
0