結果

問題 No.878 Range High-Element Query
ユーザー ooaiuooaiu
提出日時 2024-11-14 14:12:13
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 1,419 bytes
コンパイル時間 4,237 ms
コンパイル使用メモリ 290,280 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-11-14 14:12:20
合計ジャッジ時間 6,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 4 ms
6,816 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 5 ms
6,820 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 222 ms
14,336 KB
testcase_12 AC 127 ms
14,080 KB
testcase_13 AC 168 ms
11,264 KB
testcase_14 AC 119 ms
10,112 KB
testcase_15 AC 132 ms
13,824 KB
testcase_16 AC 184 ms
15,360 KB
testcase_17 AC 198 ms
15,744 KB
testcase_18 AC 196 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/segtree>
using pint = pair<int, int>;
pint op1(pint a, pint b) {
    return max(a, b);
}
pint e1() {
    return {0, 0};
}

int op(int a, int b) {
    return a + b;
}
int e() {
    return 0;
}
void solve() {
    int N, Q;
    cin >> N >> Q;
    vector<pair<int, int>> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i].first;
        A[i].second = i;
    }
    vector<vector<int>> high(N);
    atcoder::segtree<pint, op1, e1> seg1(A);
    for (int i = 0; i < N; i++) {
        auto f = [&](pint x) -> bool {
            return x.first <= A[i].first;
        };
        int l = seg1.min_left(i, f);
        high[l].push_back(i);
    }

    vector<vector<pair<int, int>>> Qs(N);
    for (int i = 0; i < Q; i++) {
        int t;
        cin >> t;
        int l, r;
        cin >> l >> r;
        l--;
        Qs[l].push_back({r, i});
    }
    vector<int> ans(Q);
    atcoder::segtree<int, op, e> seg(N);
    for(int l = 0; l < N; l++) {
        for(auto&&id: high[l]) seg.set(id, 1);
        for(auto&&[r, i]: Qs[l]) ans[i] = seg.prod(l, r);
    }
    for(int i = 0; i < Q; i++) cout << ans[i] << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0