#include using namespace std; #if __has_include() #include using namespace atcoder; templateistream &operator>>(istream &is,static_modint &a){long long b;is>>b;a=b;return is;} istream &operator>>(istream &is,modint &a){long long b;cin>>b;a=b;return is;} #endif #ifdef LOCAL #include "debug.h" #else #define debug(...) static_cast(0) #define debugg(...) static_cast(0) templateostream &operator<<(ostream &os,const pair&p){os<; templateusing minque=priority_queue,greater>; templatebool chmax(T &a,const T &b){return (abool chmin(T &a,const T &b){return (a>b?(a=b,true):false);} templateistream &operator>>(istream &is,pair&p){is>>p.first>>p.second;return is;} templateistream &operator>>(istream &is,vector &a){for(auto &i:a)is>>i;return is;} templatevoid operator++(pair&a,int n){a.first++,a.second++;} templatevoid operator--(pair&a,int n){a.first--,a.second--;} templatevoid operator++(vector&a,int n){for(auto &i:a)i++;} templatevoid operator--(vector&a,int n){for(auto &i:a)i--;} #define reps(i,a,n) for(int i=(a);i<(n);i++) #define rep(i,n) reps(i,0,n) #define all(x) x.begin(),x.end() #define pcnt(x) __builtin_popcountll(x) #define fin(x) return cout<(0) ll myceil(ll a,ll b){return (a+b-1)/b;} template auto vec(const int (&d)[n],const T &init=T()){ if constexpr (id(d,init)); else return init; } void SOLVE(); int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout<>testcase; for(int i=0;i,4>,int>; S op(S x,S y){ S ret; rep(i,4)rep(j,4){ ret.first[i][j]=max(x.first[i][j],y.first[i][j]); reps(k,i,j+1)chmax(ret.first[i][j],x.first[i][k]+y.first[k][j]); } ret.second=x.second+y.second; return ret; } S e(){ S ret; rep(i,4)rep(j,4)ret.first[i][j]=0; ret.second=0; return ret; } S mapping(int f,S x){ if(f==-1)return x; rep(i,4)rep(j,4)x.first[i][j]=(i<=f&&f<=j?x.second:0); return x; } int composition(int f,int g){return f==-1?g:f;} int id(){return -1;} void SOLVE(){ int n; cin>>n; vectordat(n); rep(i,n){ int a; cin>>a; dat[i].second=1; dat[i]=mapping(a-1,dat[i]); } lazy_segtreeseg(dat); int q; cin>>q; while(q--){ int t,l,r; cin>>t>>l>>r; l--; if(t==1){ cout<>x; x--; seg.apply(l,r,x); } } }