#include using namespace std; typedef unsigned long long int ull; typedef long long int ll; typedef pair pll; typedef long double D; typedef complex P; #define F first #define S second const ll E=1e18+7; const ll MOD=1000000007; templateistream & operator >> (istream &i,pair &A){i>>A.F>>A.S; return i;} templateistream & operator >> (istream &i,vector &A){for(auto &I:A){i>>I;} return i;} templateostream & operator << (ostream &o,const pair &A){o<ostream & operator << (ostream &o,const vector &A){ll i=A.size(); for(auto &I:A){o<vector & cset(vector &A,T e=T()){for(auto &I:A){I=e;} return A;} #ifndef SEGMENT_TREE #define SEGMENT_TREE template class SegTree{ private: typedef function MergeData; typedef function MergeMono; typedef function Culc; typedef function UpdateQuery; //data,mono,left,right true::Data,Monoに作用する false::子に降りる int size,high; vector left,right; vector dv; vector mv; Data de; Mono me; MergeData df; MergeMono mf; Culc cf; inline bool nx(int &idx){ while(idx&1){idx>>=1; if(idx){reculc(idx);}} return idx?idx|=1:idx; } inline void reculc(int idx){ dv[idx]=dv[idx<<1]; df(dv[idx],dv[(idx<<1)|1]); cf(dv[idx],mv[idx]); } inline void down(int idx){ cf(dv[idx<<1],mv[idx]); mf(mv[idx<<1],mv[idx]); cf(dv[(idx<<1)|1],mv[idx]); mf(mv[(idx<<1)|1],mv[idx]); mv[idx]=me; } public: SegTree(Data de,Mono me,MergeData df,MergeMono mf,Culc cf,int n=0):de(de),me(me),df(df),mf(mf),cf(cf){init(n);} void init(int n){ size=1; high=0; while(size0;i--){left[i]=left[i<<1]; right[i]=right[(i<<1)|1];} } void build(const vector &ary){ int n=ary.size(); init(n); for(int i=0;i0;i--){dv[i]=dv[i<<1]; df(dv[i],dv[(i<<1)|1]);} } //[lf,rg) Data query(int lf,int rg){ Data ret=de; int idx=1; bool j=true; while(j){ if(right[idx]<=lf || rg<=left[idx]){j&=nx(idx);} else if(lf<=left[idx] && right[idx]<=rg){df(ret,dv[idx]); j&=nx(idx);} else{down(idx); idx<<=1;} } return ret; } void update(int lf,int rg,Mono m){ int idx=1; bool j=true; while(j){ if(right[idx]<=lf || rg<=left[idx]){j&=nx(idx);} else if(lf<=left[idx] && right[idx]<=rg){ cf(dv[idx],m); mf(mv[idx],m); j&=nx(idx); } else{down(idx); idx<<=1;} } } void update(int lf,int rg,UpdateQuery br){ int idx=1; bool j=true; while(j){ if(right[idx]<=lf || rg<=left[idx]){j&=nx(idx);} else if(lf<=left[idx] && right[idx]<=rg){ if(br(dv[idx],mv[idx],left[idx],right[idx])){j&=nx(idx);} else{down(idx); idx<<=1;} } else{down(idx); idx<<=1;} } } void DEBUG(){cout< P;//odd(number,sum),even(number,sum) typedef pair> P2; P de={{0,0},{0,0}}; P2 me={{0,0},{{0,0},{0,0}}}; //0::nothing 1::mod2 2::add auto df=[](P &a,P &b){ a.F.F+=b.F.F; a.F.S+=b.F.S; a.S.F+=b.S.F; a.S.S+=b.S.S; }; auto mf=[&](P2 &a,P2 &b){ queue A; if(a.F.F!=0){A.push(a.F);} if(a.S.F.F!=0){A.push(a.S.F);} if(a.S.S.F!=0){A.push(a.S.S);} if(b.F.F!=0){A.push(b.F);} if(b.S.F.F!=0){A.push(b.S.F);} if(b.S.S.F!=0){A.push(b.S.S);} deque B; function cul=[&](pll w){ if(B.empty()){B.push_back(w);} else{ auto &I=B.back(); if(I.F==w.F){I.S+=w.S;} else if(B.size()>=2 && B[B.size()-2].F==1){ B[B.size()-2]=I; I=w; } else{B.push_back(w);} } }; while(!A.empty()){ pll w=A.front(); A.pop(); cul(w); } a=me; if(B.size()>=1){a.F=B[0];} if(B.size()>=2){a.S.F=B[1];} if(B.size()>=3){a.S.S=B[2];} }; auto cf=[](P &a,P2 &b){ auto cul=[&](pll w){ if(w.F==1){ a.F.S=a.F.F; a.S.S=0; } else if(w.F==2){ a.F.S+=a.F.F*w.S; a.S.S+=a.S.F*w.S; if(w.S&1){swap(a.F,a.S);} } }; cul(b.F); cul(b.S.F); cul(b.S.S); }; ll n,q; cin>>n>>q; vector A(n); cin>>A; vector

arr(n,de); for(int i=0;i Tr(de,me,df,mf,cf); Tr.build(arr); for(int i=0;i>c>>l>>r; l--; r--; if(c==1){ Tr.update(l,r+1,{{1,0},{{0,0},{0,0}}}); } else if(c==2){ cin>>x; Tr.update(l,r+1,{{2,x},{{0,0},{0,0}}}); } else{ auto I=Tr.query(l,r+1); cout<