結果
問題 | No.2809 Sort Query |
ユーザー | rei |
提出日時 | 2024-07-12 23:08:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,237 bytes |
コンパイル時間 | 1,651 ms |
コンパイル使用メモリ | 139,388 KB |
実行使用メモリ | 68,176 KB |
最終ジャッジ日時 | 2024-07-12 23:09:11 |
合計ジャッジ時間 | 11,810 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
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 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
ソースコード
#include <algorithm> #include <atcoder/lazysegtree.hpp> #include <atcoder/segtree.hpp> #include <cassert> #include <cmath> #include <cstring> #include <deque> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <set> #include <tuple> #include <utility> #include <vector> using namespace std; using i8 = int8_t; using i32 = int; using i64 = long long; // using i128 = __int128; using u64 = unsigned long long; using ll = long long; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } i64 pow(i64 j, i64 n) { i64 res = 1; while (n > 0) { if (n & 1) res *= j; j *= j; n >>= 1; } return res; } i64 op(i64 a, i64 b) { return a + b; } i64 e() { return 0; } i64 m(i64 f, i64 x) { return x + f; } i64 comp(i64 f, i64 g) { return f + g; } i64 n, q; void _main() { cin >> n >> q; vector<pair<i64, i64>> vs; vector<i64> a(n); for (i64 i = 0; i < n; i++) { cin >> a[i]; vs.push_back({a[i], i}); vs.push_back({0, i}); } vector<tuple<i64, i64, i64>> query(q); for (i64 i = 0; i < q; i++) { i64 op, k, x; cin >> op; if (op == 1) { cin >> k >> x; vs.push_back({x, n + i}); } else if (op == 3) { cin >> k; } k--; query[i] = {op, k, x}; } sort(vs.begin(), vs.end()); atcoder::segtree<i64, op, e> seg(vs.size()); vector<i64> update(vs.size()); set<i64> bk; for (i64 i = 0; i < n; i++) { seg.set(i, 1); i64 j = lower_bound(vs.begin(), vs.end(), make_pair(a[i], i)) - vs.begin(); update[i] = j; bk.insert(i); } for (i64 i = 0; i < q; i++) { i64 op = get<0>(query[i]); i64 k = get<1>(query[i]); i64 x = get<2>(query[i]); if (op == 1) { i64 j = lower_bound(vs.begin(), vs.end(), make_pair(x, n + i)) - vs.begin(); i64 p = seg.max_right(0, [&](i64 a) { return a <= k; }); update[p] = j; bk.insert(p); } else if (op == 2) { for (auto j : bk) { seg.set(j, seg.get(j) - 1); seg.set(update[j], seg.get(update[j]) + 1); update[j] = 0; } } else { i64 p = seg.max_right(0, [&](i64 a) { return a <= k; }); i64 ans = vs[p].first; cout << ans << "\n"; } } }