結果

問題 No.2387 Yokan Factory
ユーザー timitimi
提出日時 2024-02-14 13:01:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,241 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 275,232 KB
最終ジャッジ日時 2024-09-28 18:50:41
合計ジャッジ時間 12,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,364 KB
testcase_01 AC 40 ms
53,428 KB
testcase_02 AC 38 ms
53,088 KB
testcase_03 AC 38 ms
53,572 KB
testcase_04 AC 39 ms
53,868 KB
testcase_05 AC 39 ms
53,908 KB
testcase_06 AC 39 ms
54,452 KB
testcase_07 AC 39 ms
53,084 KB
testcase_08 AC 37 ms
53,208 KB
testcase_09 AC 37 ms
53,024 KB
testcase_10 AC 38 ms
53,824 KB
testcase_11 AC 38 ms
53,000 KB
testcase_12 AC 39 ms
53,560 KB
testcase_13 AC 38 ms
53,608 KB
testcase_14 AC 37 ms
53,236 KB
testcase_15 AC 3,245 ms
148,112 KB
testcase_16 AC 1,239 ms
137,988 KB
testcase_17 TLE -
testcase_18 AC 2,363 ms
139,984 KB
testcase_19 AC 2,999 ms
136,228 KB
testcase_20 AC 2,356 ms
117,364 KB
testcase_21 AC 4,557 ms
160,508 KB
testcase_22 AC 2,118 ms
113,736 KB
testcase_23 AC 3,254 ms
141,572 KB
testcase_24 AC 1,607 ms
115,504 KB
testcase_25 AC 233 ms
89,240 KB
testcase_26 AC 379 ms
100,420 KB
testcase_27 AC 427 ms
104,196 KB
testcase_28 AC 90 ms
77,480 KB
testcase_29 AC 116 ms
77,496 KB
testcase_30 AC 107 ms
77,080 KB
testcase_31 AC 95 ms
77,008 KB
testcase_32 AC 79 ms
76,860 KB
testcase_33 AC 83 ms
76,480 KB
testcase_34 AC 99 ms
77,000 KB
testcase_35 AC 62 ms
72,592 KB
testcase_36 AC 69 ms
75,012 KB
testcase_37 AC 38 ms
55,100 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)]
  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]=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,ma+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