結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー FplusFplusFFplusFplusF
提出日時 2024-10-18 21:57:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 423 ms / 6,000 ms
コード長 2,599 bytes
コンパイル時間 3,282 ms
コンパイル使用メモリ 248,536 KB
実行使用メモリ 14,252 KB
最終ジャッジ日時 2024-11-14 23:00:30
合計ジャッジ時間 10,963 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,820 KB
testcase_01 AC 5 ms
6,820 KB
testcase_02 AC 5 ms
6,816 KB
testcase_03 AC 5 ms
6,820 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 5 ms
6,816 KB
testcase_06 AC 5 ms
6,400 KB
testcase_07 AC 5 ms
6,400 KB
testcase_08 AC 6 ms
6,820 KB
testcase_09 AC 5 ms
6,816 KB
testcase_10 AC 6 ms
6,820 KB
testcase_11 AC 182 ms
10,964 KB
testcase_12 AC 398 ms
12,500 KB
testcase_13 AC 372 ms
8,192 KB
testcase_14 AC 199 ms
12,416 KB
testcase_15 AC 155 ms
12,928 KB
testcase_16 AC 340 ms
7,424 KB
testcase_17 AC 83 ms
8,960 KB
testcase_18 AC 254 ms
8,960 KB
testcase_19 AC 423 ms
9,388 KB
testcase_20 AC 131 ms
10,696 KB
testcase_21 AC 384 ms
14,228 KB
testcase_22 AC 386 ms
14,208 KB
testcase_23 AC 140 ms
7,936 KB
testcase_24 AC 4 ms
6,528 KB
testcase_25 AC 4 ms
6,400 KB
testcase_26 AC 373 ms
14,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
constexpr ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define replr(i,l,r) for (ll i=(ll)(l);i<(ll)(r);i++)
#define all(v) v.begin(),v.end()
#define len(v) ((ll)v.size())
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
template<class T> struct fenwick_tree{
    vector<T> v;
    int n;
    fenwick_tree(int x){
        n=x;
        v.assign(n+1,0);
    }
    fenwick_tree(vector<T> &a){
        n=(int)a.size();
        v.assign(n+1,0);
        for(int i=0;i<n;i++) v[i+1]=a[i];
        for(int idx=1;idx<=n;idx++){
            if(n<idx+(idx&(-idx))) continue;
            v[idx+(idx&(-idx))]+=v[idx];
        }
    }
    void add(int i,T x){
        assert(0<=i&&i<n);
        i++;
        for(int idx=i;idx<=n;idx+=(idx&(-idx))){
            v[idx]+=x;
        }
    }
    T sum(int r){  //[0,r]
        r++;
        T ret=0;
        for(int idx=r;0<idx;idx-=(idx&(-idx))){
            ret+=v[idx];
        }
        return ret;
    }
    T sum(int l,int r){  //[l,r]
        assert(0<=l&&l<n);
        assert(0<=r&&r<n);
        assert(l<=r);
        if(l==0) return sum(r);
        return sum(r)-sum(l-1);
    }
    int lower_bound(T w){
        if(w<=0) return 0;
        int x=0;
        static int r=1;
        if(r==1){
            while((r<<1)<=n) r<<=1;
        }
        while((r<<1)<=n) r<<=1;
        for(int k=r;0<k;k>>=1){
            if(x+k<=n&&v[x+k]<w){
                w-=v[x+k];
                x+=k;
            }
        }
        return x;
    }
};
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n,q,l0;
    cin >> n >> q >> l0;
    ll sz=(ll)2e5+1;
    fenwick_tree<ll> cnt(sz),sum(sz);
    vector<ll> a(n);
    rep(i,n){
        cin >> a[i];
        cnt.add(a[i],1);
        sum.add(a[i],a[i]);
    }
    bool found=false;
    while(q--){
        ll t;
        cin >> t;
        if(t==1){
            ll l;
            cin >> l;
            cnt.add(l,1);
            sum.add(l,l);
        }
        if(t==2){
            ll l,r;
            cin >> l >> r;
            cout << cnt.sum(l,r) << ' ' << sum.sum(l,r) << '\n';
            found=true;
        }
        if(t==3){
            ll m;
            cin >> m;
        }
    }
    if(!found) cout << "Not Found!\n";
}
0