結果

問題 No.878 Range High-Element Query
ユーザー けけけけ
提出日時 2024-11-30 20:42:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,029 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 219,852 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-30 20:42:56
合計ジャッジ時間 4,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 2 ms
6,824 KB
testcase_11 AC 170 ms
6,816 KB
testcase_12 AC 118 ms
6,820 KB
testcase_13 AC 137 ms
6,816 KB
testcase_14 AC 107 ms
6,816 KB
testcase_15 AC 110 ms
6,820 KB
testcase_16 AC 180 ms
6,820 KB
testcase_17 AC 173 ms
6,820 KB
testcase_18 AC 173 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
using namespace std;
using ll = long long;
#include<atcoder/segtree>
using namespace atcoder;
using S = int;
S op(S a, S b){
    return a+b;
}
S e(){
    return 0;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int n,q;
    cin>>n>>q;
    vector<int> a(n);
    rep(i,n)cin>>a[i];
    
    vector<tuple<int,int,int>> qu(q);
    rep(i,q){
        int t,l,r;
        cin>>t>>l>>r;
        l--;
        qu[i]={l,r,i};
    }
    sort(qu.begin(),qu.end(),greater<>());

    segtree<S,op,e> seg(n);
    vector<int> ans(q);
    stack<pair<int,int>> st;
    int now=n-1;
    for(auto [l,r,id]:qu){
        while(l<=now){ 
            while(st.size()>=1 && a[now]>st.top().first){
                seg.set(st.top().second, 0);
                st.pop();
            }
            st.push(make_pair(a[now], now));
            seg.set(now, 1);
            now--;
        }
        ans[id]=seg.prod(l,r);
    }
    rep(i,q)cout<<ans[i]<<endl;

}   
0