結果
問題 | No.2404 Vertical Throw Up |
ユーザー | SSRS |
提出日時 | 2023-08-04 21:42:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 126 ms / 2,000 ms |
コード長 | 2,722 bytes |
コンパイル時間 | 2,062 ms |
コンパイル使用メモリ | 181,040 KB |
実行使用メモリ | 7,228 KB |
最終ジャッジ日時 | 2024-10-14 19:41:03 |
合計ジャッジ時間 | 4,032 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 95 ms
5,792 KB |
testcase_04 | AC | 79 ms
5,616 KB |
testcase_05 | AC | 122 ms
7,212 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 126 ms
7,228 KB |
testcase_08 | AC | 96 ms
5,672 KB |
testcase_09 | AC | 77 ms
5,464 KB |
testcase_10 | AC | 22 ms
5,248 KB |
testcase_11 | AC | 21 ms
5,248 KB |
testcase_12 | AC | 15 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 3 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 3 ms
5,248 KB |
testcase_21 | AC | 3 ms
5,248 KB |
testcase_22 | AC | 3 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 3 ms
5,248 KB |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 3 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 3 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long INF = 1000000000000000000; template <typename T> struct li_chao_tree{ struct line{ T a, b; line(): a(0), b(INF){ } line(T a, T b): a(a), b(b){ } T get(T x){ return a * x + b; } }; int N; vector<T> x; vector<line> ST; li_chao_tree(){ } li_chao_tree(const vector<T> &x2){ x = x2; sort(x.begin(), x.end()); int N2 = x.size(); N = 1; while (N < N2){ N *= 2; } x.resize(N); for (int i = N2; i < N; i++){ x[i] = x[N2 - 1]; } ST = vector<line>(N * 2 - 1); } void line_add(line L, int i, int l, int r){ T la = L.get(x[l]); T lb = ST[i].get(x[l]); T ra = L.get(x[r - 1]); T rb = ST[i].get(x[r - 1]); if (la >= lb && ra >= rb){ return; } else if (la <= lb && ra <= rb){ ST[i] = L; } else { int m = (l + r) / 2; T ma = L.get(x[m]); T mb = ST[i].get(x[m]); if (ma < mb){ swap(L, ST[i]); swap(la, lb); swap(ra, rb); } if (la < lb){ line_add(L, i * 2 + 1, l, m); } if (ra < rb){ line_add(L, i * 2 + 2, m, r); } } } void line_add(T a, T b){ line_add(line(a, b), 0, 0, N); } void segment_add(int L, int R, line S, int i, int l, int r){ if (r <= L || R <= l){ return; } else if (L <= l && r <= R){ line_add(S, i, l, r); } else { int m = (l + r) / 2; segment_add(L, R, S, i * 2 + 1, l, m); segment_add(L, R, S, i * 2 + 2, m, r); } } void segment_add(T l, T r, T a, T b){ int pl = lower_bound(x.begin(), x.end(), l) - x.begin(); int pr = lower_bound(x.begin(), x.end(), r) - x.begin(); segment_add(pl, pr, line(a, b), 0, 0, N); } T get(T x2){ int p = lower_bound(x.begin(), x.end(), x2) - x.begin(); p += N - 1; T ans = INF; ans = min(ans, ST[p].get(x2)); while (p > 0){ p = (p - 1) / 2; ans = min(ans, ST[p].get(x2)); } return ans; } }; int main(){ int a; cin >> a; int Q; cin >> Q; vector<int> T(Q); vector<int> s(Q), t(Q); for (int i = 0; i < Q; i++){ cin >> T[i]; if (T[i] == 1){ cin >> s[i] >> t[i]; } if (T[i] == 2){ cin >> t[i]; } } vector<long long> X; for (int i = 0; i < Q; i++){ if (T[i] == 2){ X.push_back(t[i]); } } li_chao_tree<long long> LCT(X); for (int i = 0; i < Q; i++){ if (T[i] == 1){ long long b = s[i] + t[i]; long long c = (long long) -s[i] * t[i]; LCT.line_add(-b, -c); } if (T[i] == 2){ cout << max((long long) - t[i] * t[i] - LCT.get(t[i]), (long long) 0) * a << endl; } } }