結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-16 12:25:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 912 ms / 6,000 ms
コード長 1,699 bytes
コンパイル時間 3,788 ms
コンパイル使用メモリ 247,276 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-11-16 12:25:44
合計ジャッジ時間 18,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,400 KB
testcase_01 AC 6 ms
6,272 KB
testcase_02 AC 5 ms
6,272 KB
testcase_03 AC 5 ms
6,528 KB
testcase_04 AC 6 ms
6,400 KB
testcase_05 AC 5 ms
6,400 KB
testcase_06 AC 5 ms
6,400 KB
testcase_07 AC 5 ms
6,400 KB
testcase_08 AC 6 ms
6,400 KB
testcase_09 AC 6 ms
6,400 KB
testcase_10 AC 6 ms
6,400 KB
testcase_11 AC 378 ms
6,400 KB
testcase_12 AC 769 ms
6,400 KB
testcase_13 AC 693 ms
6,400 KB
testcase_14 AC 379 ms
6,400 KB
testcase_15 AC 296 ms
6,400 KB
testcase_16 AC 588 ms
6,400 KB
testcase_17 AC 157 ms
6,400 KB
testcase_18 AC 487 ms
6,528 KB
testcase_19 AC 912 ms
6,272 KB
testcase_20 AC 234 ms
6,400 KB
testcase_21 AC 760 ms
6,400 KB
testcase_22 AC 738 ms
6,400 KB
testcase_23 AC 247 ms
6,400 KB
testcase_24 AC 4 ms
6,528 KB
testcase_25 AC 4 ms
6,400 KB
testcase_26 AC 666 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(),(a).end()

template<typename T>
struct BIT {
    vector<T> data;
    int siz;
    
    BIT(int n) {
        siz = n;
        data.assign(siz + 1, 0);
    }
    
    BIT(int n, const vector<T> &v) : BIT(n) {
        assert(n == (int)v.size());
        for (int i = 1; i <= siz; ++i) data[i] = v[i - 1];
        for (int i = 1; i <= siz; ++i) {
            int j = i + (i & -i);
            if (j <= siz) data[j] += data[i];
        }
    }
    
    void apply(int i, const T &x) {
        for (int k = i + 1; k <= siz; k += k & -k) data[k] += x;
    }
    
    T sum(int a) {
        T res = 0;
        for (int k = a + 1; k > 0; k -= k & -k) res += data[k];
        return res;
    }
    
    // [a, b]
    T sum(int a, int b) {
        return sum(b) - sum(a - 1);
    }
};

int main() {
    cin.tie(nullptr);
    
    int N, Q, L;
    cin >> N >> Q >> L;
    
    BIT<ll> song(2e5 + 10), level(2e5 + 10);
    
    rep(i, 0, N) {
        int A;
        cin >> A;
        song.apply(A, 1);
        level.apply(A, A);
    }
    
    bool notFound = true;
    rep(query, 0, Q) {
        int type;
        cin >> type;
        if (type == 1) {
            int l;
            cin >> l;
            song.apply(l, 1);
            level.apply(l, l);
        } else if (type == 2) {
            notFound = false;
            int l, r;
            cin >> l >> r;
            cout << song.sum(l, r) << ' ' << level.sum(l, r) << '\n';
        } else {
            int m;
            cin >> m;
        }
    }
    
    if (notFound) cout << "Not Found!\n";
}
0