結果

問題 No.2387 Yokan Factory
ユーザー miho-4miho-4
提出日時 2023-07-22 00:09:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,267 ms / 5,000 ms
コード長 636 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 212,316 KB
最終ジャッジ日時 2024-09-22 01:30:29
合計ジャッジ時間 19,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,744 KB
testcase_01 AC 39 ms
53,164 KB
testcase_02 AC 39 ms
53,408 KB
testcase_03 AC 37 ms
52,828 KB
testcase_04 AC 37 ms
53,012 KB
testcase_05 AC 37 ms
53,544 KB
testcase_06 AC 38 ms
53,212 KB
testcase_07 AC 36 ms
53,076 KB
testcase_08 AC 38 ms
53,092 KB
testcase_09 AC 38 ms
54,072 KB
testcase_10 AC 39 ms
53,692 KB
testcase_11 AC 39 ms
53,176 KB
testcase_12 AC 39 ms
52,880 KB
testcase_13 AC 37 ms
52,492 KB
testcase_14 AC 37 ms
53,896 KB
testcase_15 AC 1,133 ms
159,544 KB
testcase_16 AC 598 ms
134,760 KB
testcase_17 AC 1,538 ms
212,316 KB
testcase_18 AC 1,942 ms
152,588 KB
testcase_19 AC 1,242 ms
130,788 KB
testcase_20 AC 735 ms
115,388 KB
testcase_21 AC 2,042 ms
160,108 KB
testcase_22 AC 758 ms
110,496 KB
testcase_23 AC 2,060 ms
143,256 KB
testcase_24 AC 698 ms
109,556 KB
testcase_25 AC 900 ms
114,996 KB
testcase_26 AC 2,267 ms
155,228 KB
testcase_27 AC 883 ms
136,600 KB
testcase_28 AC 101 ms
77,572 KB
testcase_29 AC 130 ms
78,208 KB
testcase_30 AC 124 ms
77,952 KB
testcase_31 AC 121 ms
76,568 KB
testcase_32 AC 106 ms
76,800 KB
testcase_33 AC 91 ms
76,500 KB
testcase_34 AC 160 ms
78,720 KB
testcase_35 AC 132 ms
78,372 KB
testcase_36 AC 68 ms
67,968 KB
testcase_37 AC 41 ms
52,608 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))
  
for i in range(n+1):
  E[i].sort(key=lambda x:x[2],reverse=True)

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 b<w:break
      if 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