結果

問題 No.2387 Yokan Factory
ユーザー miho-4miho-4
提出日時 2023-07-22 00:12:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,159 ms / 5,000 ms
コード長 558 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 207,400 KB
最終ジャッジ日時 2024-09-22 01:32:10
合計ジャッジ時間 19,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 42 ms
52,992 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 41 ms
52,480 KB
testcase_13 AC 41 ms
52,736 KB
testcase_14 AC 41 ms
52,608 KB
testcase_15 AC 1,143 ms
156,800 KB
testcase_16 AC 494 ms
132,992 KB
testcase_17 AC 1,378 ms
207,400 KB
testcase_18 AC 1,928 ms
151,904 KB
testcase_19 AC 1,263 ms
131,072 KB
testcase_20 AC 741 ms
115,004 KB
testcase_21 AC 2,019 ms
159,436 KB
testcase_22 AC 740 ms
111,744 KB
testcase_23 AC 1,951 ms
140,932 KB
testcase_24 AC 671 ms
109,580 KB
testcase_25 AC 927 ms
114,816 KB
testcase_26 AC 2,159 ms
152,596 KB
testcase_27 AC 836 ms
132,168 KB
testcase_28 AC 112 ms
77,596 KB
testcase_29 AC 124 ms
77,568 KB
testcase_30 AC 126 ms
77,776 KB
testcase_31 AC 133 ms
77,168 KB
testcase_32 AC 101 ms
76,288 KB
testcase_33 AC 100 ms
76,160 KB
testcase_34 AC 146 ms
78,480 KB
testcase_35 AC 135 ms
77,848 KB
testcase_36 AC 78 ms
70,016 KB
testcase_37 AC 41 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n,m,X=map(int,input().split())
edge=[tuple(map(int,input().split())) for _ in range(m)]

E=[[] for _ in range(n+1)]
for u,v,a,b in edge:
  E[u].append((v,a,b))
  E[v].append((u,a,b))

def f(w):
  D=[10**19]*(n+1)
  D[1]=0
  q=[(0,1)]
  while q:
    d,x=heapq.heappop(q)
    if x==n:break
    if D[x]<d:continue
    for e,a,b in E[x]:
      if w<=b and D[x]+a<D[e]:
        D[e]=D[x]+a
        heapq.heappush(q,(d+a,e))

  return 0<D[-1]<=X

l,r=-1,10**9+10
while l+1<r:
  m=(l+r)//2
  flag=f(m)

  if flag:
    l=m
  else:
    r=m
    
print(l)
0