結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー t98slidert98slider
提出日時 2024-10-23 23:29:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 469 ms / 6,000 ms
コード長 725 bytes
コンパイル時間 4,891 ms
コンパイル使用メモリ 263,168 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-11-15 16:33:26
合計ジャッジ時間 13,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,400 KB
testcase_01 AC 5 ms
6,400 KB
testcase_02 AC 4 ms
6,528 KB
testcase_03 AC 4 ms
6,400 KB
testcase_04 AC 5 ms
6,400 KB
testcase_05 AC 4 ms
6,528 KB
testcase_06 AC 5 ms
6,400 KB
testcase_07 AC 4 ms
6,400 KB
testcase_08 AC 5 ms
6,400 KB
testcase_09 AC 5 ms
6,400 KB
testcase_10 AC 4 ms
6,400 KB
testcase_11 AC 190 ms
6,400 KB
testcase_12 AC 421 ms
6,528 KB
testcase_13 AC 386 ms
6,400 KB
testcase_14 AC 207 ms
6,400 KB
testcase_15 AC 156 ms
6,528 KB
testcase_16 AC 348 ms
6,400 KB
testcase_17 AC 87 ms
6,528 KB
testcase_18 AC 273 ms
6,528 KB
testcase_19 AC 469 ms
6,528 KB
testcase_20 AC 141 ms
6,528 KB
testcase_21 AC 425 ms
6,528 KB
testcase_22 AC 438 ms
6,400 KB
testcase_23 AC 153 ms
6,400 KB
testcase_24 AC 4 ms
6,528 KB
testcase_25 AC 5 ms
6,400 KB
testcase_26 AC 380 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, q, L;
    cin >> n >> q >> L;
    atcoder::fenwick_tree<long long> fw1(200001), fw2(200001);
    while(n--){
        int v;
        cin >> v;
        fw1.add(v, 1);
        fw2.add(v, v);
    }
    bool flg = true;
    while(q--){
        int cmd, l;
        cin >> cmd >> l;
        if(cmd == 2){
            flg = false;
            int r;
            cin >> r;
            r++;
            cout << fw1.sum(l, r) << ' ' << fw2.sum(l, r) << '\n';
        }else if(cmd == 1){
            fw1.add(l, 1);
            fw2.add(l, l);
        }
    }
    if(flg) cout << "Not Found!\n";
}
0