結果

問題 No.878 Range High-Element Query
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-14 09:17:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 742 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 4,333 ms
コンパイル使用メモリ 267,340 KB
実行使用メモリ 17,612 KB
最終ジャッジ日時 2024-06-14 09:17:31
合計ジャッジ時間 10,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 5 ms
6,816 KB
testcase_02 AC 5 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 685 ms
16,328 KB
testcase_12 AC 486 ms
16,844 KB
testcase_13 AC 518 ms
11,344 KB
testcase_14 AC 412 ms
10,696 KB
testcase_15 AC 467 ms
16,460 KB
testcase_16 AC 694 ms
17,360 KB
testcase_17 AC 702 ms
17,612 KB
testcase_18 AC 742 ms
17,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct S {
    int mx;
    vector<int> vec;
};

S op(S a, S b) {
    S res;
    res.mx = max(a.mx, b.mx);
    vector<int> v = a.vec;
    for (int x : b.vec) {
        if (x > a.mx) {
            v.push_back(x);
        }
    }
    res.vec = v;
    return res;
}

S e() {
    return {0, {}};
}

int main() {
    int n, q;
    cin >> n >> q;
    segtree<S, op, e> seg(n);
    for (int i = 0; i < n; i++) {
        int a;
        cin >> a;
        seg.set(i, {a, {a}});
    }
    while (q--) {
        int t, l, r;
        cin >> t >> l >> r;
        l--;
        cout << seg.prod(l, r).vec.size() << endl;
    }
}
0