結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー hitonanodehitonanode
提出日時 2024-10-18 21:44:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 381 ms / 6,000 ms
コード長 984 bytes
コンパイル時間 1,126 ms
コンパイル使用メモリ 91,780 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-11-15 06:41:51
合計ジャッジ時間 8,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,632 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 4 ms
5,632 KB
testcase_03 AC 4 ms
5,632 KB
testcase_04 AC 3 ms
5,632 KB
testcase_05 AC 3 ms
5,632 KB
testcase_06 AC 4 ms
5,632 KB
testcase_07 AC 4 ms
5,760 KB
testcase_08 AC 4 ms
5,760 KB
testcase_09 AC 3 ms
5,632 KB
testcase_10 AC 4 ms
5,632 KB
testcase_11 AC 160 ms
5,760 KB
testcase_12 AC 344 ms
5,632 KB
testcase_13 AC 317 ms
5,760 KB
testcase_14 AC 177 ms
5,632 KB
testcase_15 AC 131 ms
5,760 KB
testcase_16 AC 284 ms
5,632 KB
testcase_17 AC 75 ms
5,632 KB
testcase_18 AC 222 ms
5,760 KB
testcase_19 AC 381 ms
5,632 KB
testcase_20 AC 114 ms
5,632 KB
testcase_21 AC 336 ms
5,632 KB
testcase_22 AC 347 ms
5,632 KB
testcase_23 AC 127 ms
5,760 KB
testcase_24 AC 3 ms
5,632 KB
testcase_25 AC 3 ms
5,632 KB
testcase_26 AC 363 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

#include <atcoder/fenwicktree>
using namespace std;

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

    int N, Q, L0;
    cin >> N >> Q >> L0;
    
    // vector<int> L(Q + 1);
    // L[0] = L0;

    auto Li = L0;

    constexpr int K = 201010;

    atcoder::fenwick_tree<int> fw0(K);
    atcoder::fenwick_tree<long long> fw1(K);

    for (int i = 0; i < N; ++i) {
        int a;
        cin >> a;
        fw0.add(a, 1);
        fw1.add(a, a);
    }

    bool has2 = false;

    for (int i = 1; i <= Q; ++i) {
        int tp;
        cin >> tp;
        if (tp == 1) {
            int l;
            cin >> l;
            fw0.add(l, 1);
            fw1.add(l, l);
        } else if (tp == 2) {
            int l, r;
            cin >> l >> r;
            ++r;
            cout << fw0.sum(l, r) << ' ' << fw1.sum(l, r) << '\n';
            has2 = true;
        } else {
            cin >> Li;
        }
    }

    if (!has2) puts("Not Found!");
}
0