結果

問題 No.2387 Yokan Factory
ユーザー timitimi
提出日時 2024-02-14 11:53:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,841 ms / 5,000 ms
コード長 913 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 265,384 KB
最終ジャッジ日時 2024-09-28 18:45:44
合計ジャッジ時間 34,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,508 KB
testcase_01 AC 35 ms
54,068 KB
testcase_02 AC 35 ms
53,236 KB
testcase_03 AC 35 ms
53,544 KB
testcase_04 AC 35 ms
53,212 KB
testcase_05 AC 35 ms
54,504 KB
testcase_06 AC 36 ms
52,656 KB
testcase_07 AC 35 ms
54,464 KB
testcase_08 AC 36 ms
54,356 KB
testcase_09 AC 36 ms
53,452 KB
testcase_10 AC 37 ms
53,212 KB
testcase_11 AC 35 ms
53,956 KB
testcase_12 AC 38 ms
53,616 KB
testcase_13 AC 35 ms
54,844 KB
testcase_14 AC 37 ms
53,464 KB
testcase_15 AC 3,435 ms
162,908 KB
testcase_16 AC 1,473 ms
149,880 KB
testcase_17 AC 4,665 ms
265,384 KB
testcase_18 AC 3,550 ms
161,484 KB
testcase_19 AC 3,133 ms
146,052 KB
testcase_20 AC 2,433 ms
125,832 KB
testcase_21 AC 4,841 ms
178,872 KB
testcase_22 AC 2,292 ms
122,900 KB
testcase_23 AC 3,447 ms
152,616 KB
testcase_24 AC 1,280 ms
112,248 KB
testcase_25 AC 219 ms
87,972 KB
testcase_26 AC 357 ms
98,224 KB
testcase_27 AC 401 ms
102,080 KB
testcase_28 AC 121 ms
78,292 KB
testcase_29 AC 149 ms
78,176 KB
testcase_30 AC 140 ms
78,156 KB
testcase_31 AC 112 ms
77,124 KB
testcase_32 AC 100 ms
76,596 KB
testcase_33 AC 86 ms
76,624 KB
testcase_34 AC 137 ms
78,368 KB
testcase_35 AC 87 ms
77,124 KB
testcase_36 AC 83 ms
76,696 KB
testcase_37 AC 37 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
def dijkstra(s,p):
    hq=[(0,s,0)]
    ans=[]
    heapq.heapify(hq) # リストを優先度付きキューに変換
    cost=[10**20]*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))

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)
0