#include #define rep(i,n) for(int i=0;i<(n);++i) using namespace std; using ll = long long; #include 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 a(n); rep(i,n)cin>>a[i]; vector> 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 seg(n); vector ans(q); stack> 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<