結果

問題 No.2809 Sort Query
ユーザー rniyarniya
提出日時 2024-07-12 22:55:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 966 ms / 2,000 ms
コード長 2,857 bytes
コンパイル時間 4,635 ms
コンパイル使用メモリ 280,036 KB
実行使用メモリ 43,068 KB
最終ジャッジ日時 2024-07-12 22:56:38
合計ジャッジ時間 51,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 630 ms
37,512 KB
testcase_02 AC 465 ms
38,356 KB
testcase_03 AC 447 ms
37,976 KB
testcase_04 AC 482 ms
37,396 KB
testcase_05 AC 448 ms
37,592 KB
testcase_06 AC 342 ms
34,320 KB
testcase_07 AC 332 ms
34,376 KB
testcase_08 AC 368 ms
34,392 KB
testcase_09 AC 365 ms
34,260 KB
testcase_10 AC 333 ms
34,736 KB
testcase_11 AC 644 ms
34,820 KB
testcase_12 AC 685 ms
34,900 KB
testcase_13 AC 652 ms
34,732 KB
testcase_14 AC 664 ms
34,732 KB
testcase_15 AC 666 ms
34,840 KB
testcase_16 AC 645 ms
34,820 KB
testcase_17 AC 648 ms
34,824 KB
testcase_18 AC 664 ms
34,868 KB
testcase_19 AC 642 ms
34,772 KB
testcase_20 AC 640 ms
34,852 KB
testcase_21 AC 931 ms
43,068 KB
testcase_22 AC 943 ms
43,068 KB
testcase_23 AC 959 ms
43,056 KB
testcase_24 AC 908 ms
43,012 KB
testcase_25 AC 966 ms
43,016 KB
testcase_26 AC 740 ms
37,888 KB
testcase_27 AC 729 ms
37,808 KB
testcase_28 AC 738 ms
37,776 KB
testcase_29 AC 727 ms
37,820 KB
testcase_30 AC 746 ms
38,268 KB
testcase_31 AC 475 ms
33,916 KB
testcase_32 AC 477 ms
33,616 KB
testcase_33 AC 470 ms
33,712 KB
testcase_34 AC 484 ms
33,744 KB
testcase_35 AC 457 ms
33,748 KB
testcase_36 AC 575 ms
34,856 KB
testcase_37 AC 604 ms
34,924 KB
testcase_38 AC 574 ms
34,872 KB
testcase_39 AC 592 ms
34,836 KB
testcase_40 AC 612 ms
34,844 KB
testcase_41 AC 437 ms
36,484 KB
testcase_42 AC 434 ms
36,608 KB
testcase_43 AC 464 ms
36,612 KB
testcase_44 AC 445 ms
36,616 KB
testcase_45 AC 441 ms
36,608 KB
testcase_46 AC 384 ms
36,608 KB
testcase_47 AC 371 ms
36,484 KB
testcase_48 AC 372 ms
36,608 KB
testcase_49 AC 372 ms
36,612 KB
testcase_50 AC 382 ms
36,612 KB
testcase_51 AC 686 ms
36,616 KB
testcase_52 AC 615 ms
36,484 KB
testcase_53 AC 570 ms
36,632 KB
testcase_54 AC 595 ms
36,612 KB
testcase_55 AC 607 ms
36,612 KB
testcase_56 AC 346 ms
24,048 KB
testcase_57 AC 322 ms
19,904 KB
testcase_58 AC 257 ms
20,404 KB
testcase_59 AC 263 ms
18,784 KB
testcase_60 AC 324 ms
29,880 KB
testcase_61 AC 410 ms
34,660 KB
testcase_62 AC 265 ms
20,136 KB
testcase_63 AC 339 ms
27,324 KB
testcase_64 AC 449 ms
36,192 KB
testcase_65 AC 255 ms
23,972 KB
testcase_66 AC 2 ms
6,944 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]--;
        }
    }

    auto 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) {
                int pos = lwb(cand, val);
                seg.set(pos, seg.get(pos) + 1);
                ft.add(key, -1);
            }
            update.clear();
        } else {
            cout << query(k[i]) << "\n";
        }
    }
    return 0;
}
0