結果
問題 | No.2387 Yokan Factory |
ユーザー | ああいい |
提出日時 | 2023-07-22 17:01:24 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,514 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 81,976 KB |
実行使用メモリ | 126,108 KB |
最終ジャッジ日時 | 2024-09-22 16:39:47 |
合計ジャッジ時間 | 9,707 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,152 KB |
testcase_01 | AC | 38 ms
52,820 KB |
testcase_02 | AC | 38 ms
52,872 KB |
testcase_03 | AC | 38 ms
53,180 KB |
testcase_04 | AC | 38 ms
53,508 KB |
testcase_05 | AC | 39 ms
53,140 KB |
testcase_06 | AC | 39 ms
54,448 KB |
testcase_07 | AC | 38 ms
54,252 KB |
testcase_08 | AC | 39 ms
53,680 KB |
testcase_09 | AC | 40 ms
52,900 KB |
testcase_10 | AC | 39 ms
53,360 KB |
testcase_11 | AC | 39 ms
53,420 KB |
testcase_12 | AC | 38 ms
53,424 KB |
testcase_13 | AC | 38 ms
53,284 KB |
testcase_14 | AC | 38 ms
54,064 KB |
testcase_15 | AC | 1,044 ms
126,108 KB |
testcase_16 | AC | 458 ms
115,248 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 import sys rr = sys.stdin N,M,X = map(int,rr.readline().split()) BB = 0 G = [[] for _ in range(N)] for _ in range(M): u,v,a,b = map(int,rr.readline().split()) u -= 1 v -= 1 if BB < b:BB = b G[u].append((b,a,v)) G[v].append((b,a,u)) for i in range(N): G[i].sort(reverse = True) X = min(X,10 ** 14) inf = 1 << 50 B = 47 mask = (1 << B) - 1 def calc(k): dist = [inf] * N dist[0] = 0 q = [0] while q: """ U = heapq.heappop(q) d = U >> B now = U & mask """ if dist[now] > d:continue if now == N - 1:break for b,a,v in G[now]: if b < k:break if dist[v] > d + a: dist[v] = d + a heapq.heappush(q,((d + a) << B) + v) return dist[-1] <= X end = BB + 1 start = 0 while end - start > 1: mid = end + start >> 1 k = mid dist = [inf] * N dist[0] = 0 q = [(0,0)] while q: """ U = heapq.heappop(q) d = U >> B now = U & mask """ d,now = heapq.heappop(q) if dist[now] > d:continue if now == N - 1:break for b,a,v in G[now]: if b < k:continue if dist[v] > d + a: dist[v] = d + a heapq.heappush(q,(d + a,v)) if dist[-1] <= X: start = mid else: end = mid """ if calc(mid): start = mid else: end = mid """ print(start if start != 0 else -1)