結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-19 20:54:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,092 ms / 6,000 ms
コード長 1,441 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 203,892 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-11-15 17:02:26
合計ジャッジ時間 14,744 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,400 KB
testcase_01 AC 4 ms
6,400 KB
testcase_02 AC 4 ms
6,400 KB
testcase_03 AC 4 ms
6,528 KB
testcase_04 AC 4 ms
6,528 KB
testcase_05 AC 4 ms
6,400 KB
testcase_06 AC 4 ms
6,400 KB
testcase_07 AC 5 ms
6,272 KB
testcase_08 AC 5 ms
6,528 KB
testcase_09 AC 5 ms
6,272 KB
testcase_10 AC 5 ms
6,528 KB
testcase_11 AC 324 ms
6,400 KB
testcase_12 AC 880 ms
6,400 KB
testcase_13 AC 956 ms
6,400 KB
testcase_14 AC 372 ms
6,400 KB
testcase_15 AC 190 ms
6,400 KB
testcase_16 AC 881 ms
6,400 KB
testcase_17 AC 140 ms
6,528 KB
testcase_18 AC 601 ms
6,400 KB
testcase_19 AC 1,092 ms
6,528 KB
testcase_20 AC 191 ms
6,400 KB
testcase_21 AC 391 ms
6,400 KB
testcase_22 AC 396 ms
6,528 KB
testcase_23 AC 409 ms
6,272 KB
testcase_24 AC 4 ms
6,400 KB
testcase_25 AC 4 ms
6,400 KB
testcase_26 AC 870 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

template<class T> struct BIT {
    private:
        vector<T> bit; int N;
        T _sum(int r){
            r++; T res = 0;
            while(r > 0) res += bit[r-1], r -= r & -r;
            return res;
        }

    public:
        BIT (int n){ N = n; bit.resize(N);}
        BIT (vector<T> &a) : BIT(a.size()) { for (int i=0; i<N; i++) add(i, a[i]);}
        void add(int loc, T val){
            loc++;
            while(loc <= N) bit[loc-1] += val, loc += loc & -loc;
        }
        void change(int loc, T val){add(loc, -get(loc)+val);}
        T sum(int l, int r) {return _sum(r) - _sum(l-1);}
        T get(int l) {return sum(l, l);}
        void clear() {for (int i=0; i<N; i++) bit[i] = 0;}
};

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll N, Q, x, y, z, t;
    bool f=0;
    cin >> N >> Q >> x;
    BIT<ll> tc(2e5+1), ts(2e5+1);
    for (int i=0; i<N; i++){
        cin >> x;
        tc.add(x, 1);
        ts.add(x, x);
    }

    while(Q--){
        cin >> t;
        if (t == 1){
            cin >> x;
            tc.add(x, 1);
            ts.add(x, x);
        }
        else if (t == 2){
            cin >> x >> y;
            f=1;
            cout << tc.sum(x, y) << " " << ts.sum(x, y) << endl;
        }
        else{
            cin >> x;
        }
    }
    if (!f) cout << "Not Found!" << endl;

    return 0;
}
0