結果

問題 No.2387 Yokan Factory
ユーザー timitimi
提出日時 2024-02-14 20:02:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,917 ms / 5,000 ms
コード長 1,280 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 196,524 KB
最終ジャッジ日時 2024-09-28 19:00:18
合計ジャッジ時間 15,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,132 KB
testcase_01 AC 38 ms
53,500 KB
testcase_02 AC 36 ms
53,420 KB
testcase_03 AC 39 ms
54,156 KB
testcase_04 AC 39 ms
53,012 KB
testcase_05 AC 40 ms
54,172 KB
testcase_06 AC 38 ms
53,220 KB
testcase_07 AC 36 ms
53,188 KB
testcase_08 AC 36 ms
53,960 KB
testcase_09 AC 37 ms
54,268 KB
testcase_10 AC 36 ms
53,332 KB
testcase_11 AC 38 ms
53,148 KB
testcase_12 AC 38 ms
53,916 KB
testcase_13 AC 36 ms
53,136 KB
testcase_14 AC 36 ms
53,236 KB
testcase_15 AC 889 ms
125,904 KB
testcase_16 AC 388 ms
114,888 KB
testcase_17 AC 1,615 ms
196,524 KB
testcase_18 AC 1,243 ms
121,072 KB
testcase_19 AC 1,072 ms
114,112 KB
testcase_20 AC 754 ms
105,020 KB
testcase_21 AC 1,726 ms
128,048 KB
testcase_22 AC 638 ms
99,984 KB
testcase_23 AC 1,917 ms
116,872 KB
testcase_24 AC 888 ms
104,044 KB
testcase_25 AC 182 ms
86,176 KB
testcase_26 AC 304 ms
94,816 KB
testcase_27 AC 259 ms
96,776 KB
testcase_28 AC 82 ms
76,848 KB
testcase_29 AC 104 ms
77,084 KB
testcase_30 AC 101 ms
77,004 KB
testcase_31 AC 104 ms
76,808 KB
testcase_32 AC 81 ms
76,632 KB
testcase_33 AC 79 ms
76,844 KB
testcase_34 AC 119 ms
77,724 KB
testcase_35 AC 64 ms
73,040 KB
testcase_36 AC 60 ms
68,360 KB
testcase_37 AC 37 ms
53,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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