結果
問題 | No.2404 Vertical Throw Up |
ユーザー | timi |
提出日時 | 2024-02-28 13:49:35 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 263 ms / 2,000 ms |
コード長 | 1,703 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,584 KB |
実行使用メモリ | 101,016 KB |
最終ジャッジ日時 | 2024-09-29 12:19:58 |
合計ジャッジ時間 | 4,859 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,512 KB |
testcase_01 | AC | 38 ms
52,824 KB |
testcase_02 | AC | 39 ms
52,636 KB |
testcase_03 | AC | 226 ms
91,100 KB |
testcase_04 | AC | 202 ms
89,460 KB |
testcase_05 | AC | 252 ms
99,184 KB |
testcase_06 | AC | 42 ms
53,932 KB |
testcase_07 | AC | 263 ms
101,016 KB |
testcase_08 | AC | 217 ms
91,192 KB |
testcase_09 | AC | 205 ms
88,244 KB |
testcase_10 | AC | 129 ms
79,304 KB |
testcase_11 | AC | 124 ms
79,676 KB |
testcase_12 | AC | 112 ms
78,772 KB |
testcase_13 | AC | 48 ms
61,924 KB |
testcase_14 | AC | 55 ms
66,504 KB |
testcase_15 | AC | 52 ms
66,592 KB |
testcase_16 | AC | 47 ms
63,356 KB |
testcase_17 | AC | 58 ms
67,564 KB |
testcase_18 | AC | 59 ms
68,256 KB |
testcase_19 | AC | 47 ms
61,772 KB |
testcase_20 | AC | 46 ms
62,356 KB |
testcase_21 | AC | 57 ms
69,084 KB |
testcase_22 | AC | 48 ms
62,680 KB |
testcase_23 | AC | 45 ms
60,844 KB |
testcase_24 | AC | 60 ms
67,648 KB |
testcase_25 | AC | 45 ms
60,180 KB |
testcase_26 | AC | 54 ms
65,432 KB |
testcase_27 | AC | 56 ms
66,512 KB |
testcase_28 | AC | 45 ms
61,280 KB |
testcase_29 | AC | 41 ms
53,896 KB |
testcase_30 | AC | 40 ms
54,004 KB |
testcase_31 | AC | 48 ms
63,368 KB |
testcase_32 | AC | 40 ms
55,412 KB |
ソースコード
INF = 1 << 60 class LiChaoTree(object): def __init__(self, X): X = sorted(set(X)) N = 1 << (len(X) - 1).bit_length() self._tree = [None] * (N << 1) self._N, self._X = N, X + [INF] * (N - len(X)) self._X_inv = {x : i for i, x in enumerate(X)} def add_line(self, a, b): tree, X = self._tree, self._X i, l, r = 1, 0, self._N while r - l: if tree[i] is None: tree[i] = (a, b) return m = (l + r) >> 1 xl, xm, xr = X[l], X[m], X[r-1] ai, bi = tree[i] left = a * xl + b < ai * xl + bi mid = a * xm + b < ai * xm + bi right = a * xr + b < ai * xr + bi if left is right: if left: tree[i] = (a, b) return if mid: tree[i], a, b = (a, b), ai, bi if left is not mid: i, r = i << 1, m else: i, l = i << 1 | 1, m def get_min(self, x): i = self._X_inv[x] i += self._N res = INF tree = self._tree while i: if tree[i] is not None: a, b = tree[i] res = min(res, a * x + b) i >>= 1 return res from sys import stdin input=lambda :stdin.readline()[:-1] a=int(input()) Q=int(input()) S=[] X=set() for _ in range(Q): t,*A=list(map(int, input().split())) if t==2: X.add(A[0]) S.append((t,*A)) LCT=LiChaoTree(X) for query in S: if query[0]==1: s,t=query[1:] LCT.add_line(-(s+t),s*t) else: t=query[1] ans=max(0,-LCT.get_min(t)-t*t) print(ans*a)