結果
問題 | No.2387 Yokan Factory |
ユーザー | miho-4 |
提出日時 | 2023-07-21 22:50:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 669 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 119,296 KB |
最終ジャッジ日時 | 2024-09-22 00:23:05 |
合計ジャッジ時間 | 8,993 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
54,272 KB |
testcase_01 | AC | 50 ms
53,760 KB |
testcase_02 | AC | 50 ms
54,144 KB |
testcase_03 | AC | 49 ms
53,888 KB |
testcase_04 | AC | 50 ms
54,144 KB |
testcase_05 | AC | 49 ms
54,144 KB |
testcase_06 | WA | - |
testcase_07 | AC | 51 ms
53,760 KB |
testcase_08 | AC | 51 ms
54,016 KB |
testcase_09 | AC | 50 ms
54,144 KB |
testcase_10 | AC | 50 ms
53,936 KB |
testcase_11 | AC | 52 ms
53,760 KB |
testcase_12 | AC | 51 ms
53,888 KB |
testcase_13 | AC | 51 ms
53,504 KB |
testcase_14 | AC | 50 ms
53,504 KB |
testcase_15 | AC | 429 ms
118,656 KB |
testcase_16 | AC | 363 ms
119,296 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 | -- | - |
ソースコード
from collections import deque n,m,X=map(int,input().split()) edge=[list(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]) def f(y): D=[10**18+1]*(n+1) D[1]=0 q=deque([1]) while q: x=q.popleft() for e,a,b in E[x]: if y<=b and D[x]+a<D[e] and D[x]+a<=X: D[e]=D[x]+a q.append(e) return 0<D[-1]<=X l,r=0,10**9+1 cnt=70 while 1: cnt-=1 if cnt==0:exit() m=(l+r)//2 if m<=0: exit(print(-1)) flag=f(m) if flag and 10**9<=m:exit(print(m)) if flag and f(m+1)==0: exit(print(m)) if flag: l=m+1 else: r=m-1