結果
問題 | No.2387 Yokan Factory |
ユーザー | KDKJ |
提出日時 | 2024-06-29 03:01:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,063 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 140,160 KB |
最終ジャッジ日時 | 2024-06-29 03:01:30 |
合計ジャッジ時間 | 9,386 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
54,144 KB |
testcase_01 | AC | 43 ms
54,016 KB |
testcase_02 | AC | 47 ms
53,888 KB |
testcase_03 | AC | 42 ms
54,528 KB |
testcase_04 | AC | 42 ms
54,016 KB |
testcase_05 | AC | 43 ms
53,760 KB |
testcase_06 | AC | 43 ms
53,760 KB |
testcase_07 | AC | 47 ms
54,144 KB |
testcase_08 | AC | 42 ms
54,016 KB |
testcase_09 | AC | 43 ms
54,144 KB |
testcase_10 | AC | 46 ms
53,760 KB |
testcase_11 | AC | 42 ms
54,144 KB |
testcase_12 | AC | 42 ms
54,400 KB |
testcase_13 | AC | 43 ms
53,888 KB |
testcase_14 | AC | 41 ms
54,144 KB |
testcase_15 | AC | 805 ms
113,804 KB |
testcase_16 | AC | 397 ms
110,720 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 defaultdict,Counter,deque from heapq import heappush,heappop def main(): N,M,X =map(int,input().split()) e = [[] for _ in range(N)] m = 0 for _ in range(M): u,v,a,b = map(int,input().split()) u -= 1 v -= 1 m = max(b,m) e[u].append([v,a,b]) e[v].append([u,a,b]) ok = 0 ng = m+1 while ng - ok > 1: mid = (ok + ng)//2 v = [1 << 60] * N v[0] = 0 q = [] heappush(q,(0,0)) f = False while q: t,p = heappop(q) if p == N-1: f = True break for next,a,b in e[p]: if mid <= b and t + a <= X and t + a < v[next]: v[next] = t + a heappush(q,(v[next],next)) if f: ok = mid else: ng = mid if ok == 0: print(-1) else: print(ok) if __name__ == '__main__': main()