結果

問題 No.2387 Yokan Factory
ユーザー timitimi
提出日時 2024-02-14 12:14:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,621 ms / 5,000 ms
コード長 1,220 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 268,172 KB
最終ジャッジ日時 2024-09-28 18:49:06
合計ジャッジ時間 32,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,960 KB
testcase_01 AC 35 ms
53,492 KB
testcase_02 AC 35 ms
53,508 KB
testcase_03 AC 37 ms
53,740 KB
testcase_04 AC 36 ms
53,684 KB
testcase_05 AC 35 ms
53,872 KB
testcase_06 AC 35 ms
53,232 KB
testcase_07 AC 36 ms
53,156 KB
testcase_08 AC 35 ms
53,188 KB
testcase_09 AC 37 ms
52,752 KB
testcase_10 AC 34 ms
53,028 KB
testcase_11 AC 37 ms
53,244 KB
testcase_12 AC 33 ms
53,356 KB
testcase_13 AC 37 ms
53,360 KB
testcase_14 AC 34 ms
53,076 KB
testcase_15 AC 3,259 ms
149,976 KB
testcase_16 AC 1,337 ms
145,672 KB
testcase_17 AC 4,621 ms
268,172 KB
testcase_18 AC 3,213 ms
147,528 KB
testcase_19 AC 2,968 ms
137,700 KB
testcase_20 AC 2,088 ms
115,716 KB
testcase_21 AC 4,501 ms
161,480 KB
testcase_22 AC 1,987 ms
114,056 KB
testcase_23 AC 3,248 ms
143,860 KB
testcase_24 AC 1,207 ms
109,148 KB
testcase_25 AC 235 ms
88,648 KB
testcase_26 AC 385 ms
99,608 KB
testcase_27 AC 432 ms
103,932 KB
testcase_28 AC 90 ms
76,728 KB
testcase_29 AC 109 ms
77,444 KB
testcase_30 AC 101 ms
77,196 KB
testcase_31 AC 90 ms
76,488 KB
testcase_32 AC 80 ms
76,176 KB
testcase_33 AC 78 ms
76,380 KB
testcase_34 AC 105 ms
76,840 KB
testcase_35 AC 63 ms
71,212 KB
testcase_36 AC 70 ms
74,304 KB
testcase_37 AC 37 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin, setrecursionlimit
  input = stdin.readline
  readline = stdin.readline
 
  import heapq
  def dijkstra(s,p):
      hq=[(0,s,0)]
      heapq.heapify(hq) # リストを優先度付きキューに変換
      cost=[10**18+1]*N # 行ったことのないところはinf
      cost[s]=0 # 開始地点は0
      while hq:
        c,v,pre=heapq.heappop(hq)
        if c>cost[v]: # コストが現在のコストよりも高ければスルー v:now u:nex
          continue
        for d,u,pp in E[v]:
          if p>pp:
            continue
          tmp=d+cost[v]
          if tmp<cost[u]:
            cost[u]=tmp
            heapq.heappush(hq,(tmp,u,v))
      return cost
  
  N,M,X=map(int,input().split())
  E=[[] for _ in range(N)]
  for i in range(M):
    a,b,t,x=map(int,input().split())
    a-=1;b-=1
    E[a].append((t,b,x))
    E[b].append((t,a,x))
  for i in range(N):
    E[i]=sorted(E[i][::-1])
  
  A=dijkstra(0,10**9)
  if A[-1]<=X:
    print(10**9)
    exit()
  A=dijkstra(0,0)
  if A[-1]>X:
    print(-1)
    exit()
  
  
  ok,ng=0,10**9+1
  while (ng-ok)>1:
    mid=(ok+ng)//2
    A=dijkstra(0,mid)
    if A[-1]>X:
      ng=mid
    else:
      ok=mid
  print(ok)
main()
0