結果

問題 No.2387 Yokan Factory
ユーザー timitimi
提出日時 2024-02-14 12:02:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,262 ms / 5,000 ms
コード長 1,168 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 262,304 KB
最終ジャッジ日時 2024-09-28 18:47:55
合計ジャッジ時間 29,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,076 KB
testcase_01 AC 33 ms
54,768 KB
testcase_02 AC 32 ms
53,012 KB
testcase_03 AC 32 ms
53,428 KB
testcase_04 AC 36 ms
53,516 KB
testcase_05 AC 32 ms
53,712 KB
testcase_06 AC 32 ms
53,732 KB
testcase_07 AC 34 ms
53,620 KB
testcase_08 AC 34 ms
53,916 KB
testcase_09 AC 32 ms
53,800 KB
testcase_10 AC 32 ms
53,288 KB
testcase_11 AC 32 ms
54,496 KB
testcase_12 AC 33 ms
53,084 KB
testcase_13 AC 34 ms
53,132 KB
testcase_14 AC 34 ms
53,416 KB
testcase_15 AC 3,106 ms
145,276 KB
testcase_16 AC 1,239 ms
140,664 KB
testcase_17 AC 4,262 ms
262,304 KB
testcase_18 AC 2,923 ms
145,264 KB
testcase_19 AC 2,574 ms
133,232 KB
testcase_20 AC 1,973 ms
112,740 KB
testcase_21 AC 4,136 ms
157,408 KB
testcase_22 AC 1,867 ms
110,920 KB
testcase_23 AC 2,875 ms
138,944 KB
testcase_24 AC 1,025 ms
106,836 KB
testcase_25 AC 189 ms
86,700 KB
testcase_26 AC 291 ms
96,248 KB
testcase_27 AC 321 ms
99,432 KB
testcase_28 AC 87 ms
76,844 KB
testcase_29 AC 102 ms
77,164 KB
testcase_30 AC 96 ms
77,056 KB
testcase_31 AC 88 ms
76,536 KB
testcase_32 AC 75 ms
76,224 KB
testcase_33 AC 78 ms
76,392 KB
testcase_34 AC 95 ms
77,072 KB
testcase_35 AC 66 ms
75,376 KB
testcase_36 AC 66 ms
75,000 KB
testcase_37 AC 34 ms
54,236 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))
  
  A=dijkstra(0,0)
  if A[-1]>X:
    print(-1)
    exit()
  A=dijkstra(0,10**9)
  if A[-1]<=X:
    print(10**9)
    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