結果

問題 No.2809 Sort Query
ユーザー rniyarniya
提出日時 2024-07-12 22:44:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,817 bytes
コンパイル時間 3,628 ms
コンパイル使用メモリ 279,220 KB
実行使用メモリ 43,108 KB
最終ジャッジ日時 2024-07-12 22:45:08
合計ジャッジ時間 48,561 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 522 ms
38,408 KB
testcase_02 AC 479 ms
37,492 KB
testcase_03 AC 464 ms
37,888 KB
testcase_04 AC 429 ms
37,436 KB
testcase_05 AC 453 ms
37,608 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 819 ms
43,048 KB
testcase_22 AC 844 ms
43,020 KB
testcase_23 AC 830 ms
43,108 KB
testcase_24 AC 820 ms
43,024 KB
testcase_25 AC 816 ms
42,892 KB
testcase_26 AC 652 ms
37,644 KB
testcase_27 AC 674 ms
37,776 KB
testcase_28 AC 656 ms
37,816 KB
testcase_29 AC 677 ms
38,000 KB
testcase_30 AC 729 ms
38,356 KB
testcase_31 AC 425 ms
33,692 KB
testcase_32 AC 438 ms
33,820 KB
testcase_33 AC 432 ms
34,336 KB
testcase_34 AC 451 ms
33,664 KB
testcase_35 AC 431 ms
33,652 KB
testcase_36 AC 497 ms
34,884 KB
testcase_37 AC 577 ms
34,868 KB
testcase_38 AC 607 ms
34,772 KB
testcase_39 AC 539 ms
34,820 KB
testcase_40 AC 573 ms
34,900 KB
testcase_41 AC 418 ms
36,612 KB
testcase_42 AC 425 ms
36,484 KB
testcase_43 AC 426 ms
36,484 KB
testcase_44 AC 456 ms
36,608 KB
testcase_45 AC 426 ms
36,612 KB
testcase_46 AC 357 ms
36,612 KB
testcase_47 AC 379 ms
36,484 KB
testcase_48 AC 406 ms
36,612 KB
testcase_49 AC 407 ms
36,484 KB
testcase_50 AC 409 ms
36,480 KB
testcase_51 AC 721 ms
36,612 KB
testcase_52 AC 505 ms
36,612 KB
testcase_53 AC 600 ms
36,612 KB
testcase_54 AC 524 ms
36,612 KB
testcase_55 AC 562 ms
36,612 KB
testcase_56 AC 372 ms
24,048 KB
testcase_57 AC 268 ms
19,904 KB
testcase_58 AC 251 ms
20,528 KB
testcase_59 AC 258 ms
18,656 KB
testcase_60 AC 309 ms
30,544 KB
testcase_61 AC 388 ms
34,692 KB
testcase_62 AC 256 ms
20,264 KB
testcase_63 AC 355 ms
27,284 KB
testcase_64 AC 473 ms
36,116 KB
testcase_65 AC 271 ms
23,976 KB
testcase_66 AC 2 ms
6,940 KB
testcase_67 AC 2 ms
6,940 KB
testcase_68 AC 2 ms
6,940 KB
testcase_69 AC 2 ms
6,940 KB
testcase_70 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include <debug.hpp>
#else
#define debug(...) void(0)
#endif

template <class T> std::istream& operator>>(std::istream& is, std::vector<T>& v) {
    for (auto& e : v) {
        is >> e;
    }
    return is;
}

template <class T> std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) {
    for (std::string_view sep = ""; const auto& e : v) {
        os << std::exchange(sep, " ") << e;
    }
    return os;
}

template <class T, class U = T> bool chmin(T& x, U&& y) {
    return y < x and (x = std::forward<U>(y), true);
}

template <class T, class U = T> bool chmax(T& x, U&& y) {
    return x < y and (x = std::forward<U>(y), true);
}

template <class T> void mkuni(std::vector<T>& v) {
    std::ranges::sort(v);
    auto result = std::ranges::unique(v);
    v.erase(result.begin(), result.end());
}

template <class T> int lwb(const std::vector<T>& v, const T& x) {
    return std::distance(v.begin(), std::ranges::lower_bound(v, x));
}

#include <atcoder/fenwicktree>
#include <atcoder/segtree>

using ll = long long;

using namespace std;

int op(int l, int r) { return l + r; }

int e() { return 0; }

int target;

bool f(int x) { return x <= target; }

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int N, Q;
    cin >> N >> Q;
    vector<ll> A(N);
    cin >> A;
    vector<int> t(Q), k(Q);
    vector<ll> x(Q);
    for (int i = 0; i < Q; i++) {
        cin >> t[i];
        if (t[i] == 1) {
            cin >> k[i] >> x[i];
            k[i]--;
        } else if (t[i] == 2) {
        } else {
            cin >> k[i];
            k[i]--;
        }
    }

    vector<ll> cand = A;
    for (int i = 0; i < Q; i++) {
        if (t[i] == 1) {
            cand.emplace_back(x[i]);
        }
    }
    mkuni(cand);
    int len = cand.size();
    atcoder::segtree<int, op, e> seg(len);
    atcoder::fenwick_tree<int> ft(N);
    map<int, ll> update;
    for (int i = 0; i < N; i++) {
        update[i] = A[i];
        ft.add(i, 1);
    }
    auto query = [&](int i) -> ll {
        if (update.count(i)) return update[i];
        target = i - ft.sum(0, i);
        return cand[seg.max_right<f>(0)];
    };
    for (int i = 0; i < Q; i++) {
        if (t[i] == 1) {
            if (not update.count(k[i])) {
                ll cur = query(k[i]);
                int pos = lwb(cand, cur);
                seg.set(pos, seg.get(pos) - 1);
                ft.add(k[i], 1);
            }
            update[k[i]] = x[i];
        } else if (t[i] == 2) {
            for (auto [key, val] : update) {
                seg.set(lwb(cand, val), 1);
                ft.add(key, -1);
            }
            update.clear();
        } else {
            cout << query(k[i]) << "\n";
        }
    }
    return 0;
}
0