結果
問題 | No.2387 Yokan Factory |
ユーザー | miho-4 |
提出日時 | 2023-07-22 00:03:02 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 634 bytes |
コンパイル時間 | 428 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 159,400 KB |
最終ジャッジ日時 | 2024-09-22 01:25:46 |
合計ジャッジ時間 | 10,087 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
53,384 KB |
testcase_01 | AC | 41 ms
53,896 KB |
testcase_02 | AC | 40 ms
53,688 KB |
testcase_03 | AC | 43 ms
53,636 KB |
testcase_04 | AC | 40 ms
54,396 KB |
testcase_05 | AC | 40 ms
53,304 KB |
testcase_06 | AC | 40 ms
52,884 KB |
testcase_07 | AC | 39 ms
53,288 KB |
testcase_08 | AC | 40 ms
54,464 KB |
testcase_09 | AC | 40 ms
53,200 KB |
testcase_10 | AC | 39 ms
53,620 KB |
testcase_11 | AC | 39 ms
53,296 KB |
testcase_12 | AC | 40 ms
53,668 KB |
testcase_13 | AC | 40 ms
54,464 KB |
testcase_14 | AC | 41 ms
54,500 KB |
testcase_15 | AC | 1,301 ms
159,400 KB |
testcase_16 | AC | 628 ms
134,808 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
import heapq n,m,X=map(int,input().split()) edge=[tuple(map(int,input().split())) for _ in range(m)] E=[[] for _ in range(n+1)] for u,v,a,b in edge: E[u].append((v,a,b)) E[v].append((u,a,b)) for i in range(n+1): E[i].sort(key=lambda x:x[2],reverse=True) def f(w): D=[10**19]*(n+1) D[1]=0 q=[] heapq.heappush(q,(0,1)) while q: d,x=heapq.heappop(q) if x==n:break for e,a,b in E[x]: if b<w:break if D[x]+a<D[e]: D[e]=D[x]+a heapq.heappush(q,(d+a,e)) return 0<D[-1]<=X l,r=-1,10**9+10 while l+1<r: m=(l+r)//2 flag=f(m) if flag: l=m else: r=m print(l)