結果

問題 No.1441 MErGe
ユーザー karinohitokarinohito
提出日時 2023-10-01 00:22:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 953 ms / 1,000 ms
コード長 6,808 bytes
コンパイル時間 4,564 ms
コンパイル使用メモリ 267,812 KB
実行使用メモリ 47,672 KB
最終ジャッジ日時 2023-10-01 00:22:47
合計ジャッジ時間 23,621 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 6 ms
4,496 KB
testcase_04 AC 7 ms
4,428 KB
testcase_05 AC 17 ms
4,532 KB
testcase_06 AC 17 ms
4,660 KB
testcase_07 AC 17 ms
4,468 KB
testcase_08 AC 211 ms
13,908 KB
testcase_09 AC 195 ms
13,708 KB
testcase_10 AC 312 ms
13,872 KB
testcase_11 AC 293 ms
9,740 KB
testcase_12 AC 343 ms
14,588 KB
testcase_13 AC 692 ms
45,728 KB
testcase_14 AC 751 ms
46,552 KB
testcase_15 AC 739 ms
46,272 KB
testcase_16 AC 693 ms
45,872 KB
testcase_17 AC 686 ms
45,864 KB
testcase_18 AC 584 ms
46,220 KB
testcase_19 AC 673 ms
46,368 KB
testcase_20 AC 515 ms
46,664 KB
testcase_21 AC 469 ms
26,828 KB
testcase_22 AC 643 ms
25,668 KB
testcase_23 AC 953 ms
47,672 KB
testcase_24 AC 934 ms
47,592 KB
testcase_25 AC 936 ms
47,004 KB
testcase_26 AC 910 ms
46,020 KB
testcase_27 AC 907 ms
46,252 KB
testcase_28 AC 278 ms
46,208 KB
testcase_29 AC 273 ms
45,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
#include <time.h> 
using namespace atcoder;
using ll = long long;
using vll = vector<ll>;
using vvll = vector<vll>;
using vvvll = vector<vvll>;
using vb = vector<bool>;
using vvb = vector<vb>;
using vvvb = vector<vvb>;
#define all(A) A.begin(),A.end()
#define rep(i, n) for (ll i = 0; i < (ll) (n); i++)
template<class T>
bool chmax(T& p, T q, bool C = 1) {
    if (C == 0 && p == q) {
        return 1;
    }
    if (p < q) {
        p = q;
        return 1;
    }
    else {
        return 0;
    }
}
template<class T>
bool chmin(T& p, T q, bool C = 1) {
    if (C == 0 && p == q) {
        return 1;
    }
    if (p > q) {
        p = q;
        return 1;
    }
    else {
        return 0;
    }
}
ll modPow(long long a, long long n, long long p) {
    if (n == 0) return 1; // 0乗にも対応する場合
    if (n == 1) return a % p;
    if (n % 2 == 1) return (a * modPow(a, n - 1, p)) % p;
    long long t = modPow(a, n / 2, p);
    return (t * t) % p;
}
ll gcd(ll(a), ll(b)) {
    if (a == 0)return b;
    if (b == 0)return a;
    ll c = a;
    while (a % b != 0) {
        c = a % b;
        a = b;
        b = c;
    }
    return b;
}
ll sqrtz(ll N) {
    ll L = 0;
    ll R = sqrt(N) + 10000;
    while (abs(R - L) > 1) {
        ll mid = (R + L) / 2;
        if (mid * mid <= N)L = mid;
        else R = mid;
    }
    return L;
}


using mint = modint998244353;
using vm = vector<mint>;
using vvm = vector<vm>;
using vvvm = vector<vvm>;


vector<mint> fact, factinv, inv;
const ll mod = 998244353;
void prenCkModp(ll n) {
    fact.resize(n + 5);
    factinv.resize(n + 5);
    inv.resize(n + 5);
    fact[0] = fact[1] = 1;
    factinv[0] = factinv[1] = 1;
    inv[1] = 1;
    for (ll i = 2; i < n + 5; i++) {
        fact[i] = (fact[i - 1] * i);
        inv[i] = (mod - ((inv[mod % i] * (mod / i))));
        factinv[i] = (factinv[i - 1] * inv[i]);
    }
}
mint nCk(ll n, ll k) {
    if (n < k || k < 0) return 0;
    return (fact[n] * ((factinv[k] * factinv[n - k])));
}


bool DEB = 1;


/*
base:桁数
insert(num): numを挿入. O(log(N))
erase(num): numがあれば一つ削除 O(log(N))
search(num): numがあるか判定 O(log(N))
small_num(num,x) d XOR num <x となる dの個数 O(log(N))
XOR_min(x): min(d XOR x) を求める

ToDo: 
insert_cnt(num,x): numをcnt個挿入
erase_all(num): numがあれば全て削除
XOR_max(x): min(d XOR x) を求める
All_xor(x): 全ての要素をXORする. 

全てO(logN)でできるはず. 
最後のは遅延評価的なのが必要でちょっと体力がいる
*/

struct Binary_Trie {
    ll base = 18;//桁数
    struct Node {
        vector<ll> next;
        vector<ll> accept;
        ll c;
        ll common;
        Node(ll c_) : c(c_), common(0) {
            next.assign(2, -1);
        }
    };

    vector<Node> nodes;
    ll root = 0;
    Binary_Trie() {
        nodes.push_back(Node(root));
    }

    void insert(const ll& num) {
        ll node_id = 0;
        for (ll b = base; b >= 0; b--) {
            ll nt = 0;
            nt = (num & (1ll << b) ? 1 : 0);

            if (nodes[node_id].next[nt] == -1) {
                nodes.push_back(Node(nt));
                nodes[node_id].next[nt] = nodes.size() - 1;
            }
            nodes[node_id].common++;
            node_id = nodes[node_id].next[nt];
        }
        nodes[node_id].common++;

    }

    bool search(const ll& num) {
        ll node_id = 0;
        bool EX = 1;
        for (ll b = base; b >= 0; b--) {
            ll nt = 0;
            nt = (num & (1ll << b) ? 1 : 0);

            if (nodes[node_id].next[nt] == -1||nodes[nodes[node_id].next[nt]].common==0) {
                EX = 0;
                break;
            }
            node_id = nodes[node_id].next[nt];
        }
        return EX;
    }

    void erase(const ll& num) {
        if (!search(num))return;
        ll node_id = 0;
        for (ll b = base; b >= 0; b--) {
            ll nt = 0;
            nt = (num & (1ll << b) ? 1 : 0);
            nodes[node_id].common--;
            node_id = nodes[node_id].next[nt];
        }
        nodes[node_id].common--;
    }

    ll small_num(const ll& p, const ll& x) {//d XOR p<x なるdの個数
        ll res = 0;
        ll node_id = 0;
        for (ll b = base; b >= 0; b--) {
            ll nx = 0, np = 0;
            nx = (x & (1ll << b) ? 1 : 0);
            np = (p & (1ll << b) ? 1 : 0);
            if (nx == 1) {
                if (nodes[node_id].next[np] != -1) {
                    res += nodes[nodes[node_id].next[np]].common;
                }
                if (nodes[node_id].next[1 - np] == -1) {
                    break;
                }
                else {
                    node_id = nodes[node_id].next[1 - np];
                    continue;
                }
            }
            else {
                if (nodes[node_id].next[np] == -1) {
                    break;
                }
                else {
                    node_id = nodes[node_id].next[np];
                    continue;
                }
            }
        }
        return res;
    }

    ll min_XOR(ll x){
        ll res=0;
        ll node_id = 0;
        for (ll b = base; b >= 0; b--) {
            ll nx = 0;
            nx = (x & (1ll << b) ? 1 : 0);
            if (nodes[node_id].next[nx] != -1&&nodes[nodes[node_id].next[nx]].common>0) {
                node_id=nodes[node_id].next[nx];
            }
            else {
                res+=(1ll<<b);
                node_id = nodes[node_id].next[1 - nx];
            }
        }
        return res;
    }


    ll K_thsmall(ll K){//K番目に小さい値を返す.(0index)
        if(nodes[0].common<=K)return -1e18;
        ll node_id=0;
        ll res=0;
        for (ll b = base; b >= 0; b--) {
            if(nodes[node_id].next[0]!=-1&&nodes[nodes[node_id].next[0]].common>K){
                node_id=nodes[node_id].next[0];
            }
            else{
                res+=(1ll<<b);
                if(nodes[node_id].next[0]!=-1){
                    K-=nodes[nodes[node_id].next[0]].common;
                }
                node_id=nodes[node_id].next[1];
            }
        }
        return res;
    }
};


int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    ll N,Q;
    cin>>N>>Q;
    vll A(N);
    rep(i,N)cin>>A[i];
    Binary_Trie BT;
    rep(i,N+1)BT.insert(i);
    vll SA(N+1,0);
    rep(i,N)SA[i+1]=SA[i]+A[i];
    rep(i,Q){
        ll T,L,R;
        cin>>T>>L>>R;
        L--;R--;
        ll S=BT.K_thsmall(L);
        ll F=BT.K_thsmall(R+1);
        if(T==1){
            for(ll l=L+1;l<=R;l++){
                BT.erase(BT.K_thsmall(L+1));
            }
        }
        else{
            cout<<SA[F]-SA[S]<<endl;
        }
    }
}
0