結果

問題 No.878 Range High-Element Query
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-14 09:15:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 766 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 6,633 ms
コンパイル使用メモリ 269,136 KB
実行使用メモリ 17,612 KB
最終ジャッジ日時 2024-06-14 09:16:02
合計ジャッジ時間 12,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 4 ms
6,812 KB
testcase_02 AC 5 ms
6,816 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 5 ms
6,944 KB
testcase_06 AC 2 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 666 ms
16,332 KB
testcase_12 AC 471 ms
16,844 KB
testcase_13 AC 521 ms
11,336 KB
testcase_14 AC 380 ms
10,700 KB
testcase_15 AC 469 ms
16,464 KB
testcase_16 AC 706 ms
17,356 KB
testcase_17 AC 766 ms
17,480 KB
testcase_18 AC 698 ms
17,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

S op(S a, S b) {
    S res;
    res.mx = max(a.mx, b.mx);
    res.mn = min(a.mn, b.mn);
    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, 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, {a}});
    }
    while (q--) {
        int t, l, r;
        cin >> t >> l >> r;
        l--;
        cout << seg.prod(l, r).vec.size() << endl;
    }
}
0