#ifndef LOCAL #include using namespace std; #define debug(...) (void(0)) #else #include "algo/debug.h" #endif #include using ll = long long; struct S { int odd, even; ll sum, size; }; S op(S a, S b) { return S{ a.odd + b.odd, a.even + b.even, a.sum + b.sum, a.size + b.size}; } S e() { return S{0, 0, 0, 0}; } struct F { ll val; bool type1; }; F id() { return F{0, 0}; } S mapping(F f, S x) { if(f.type1) { x.sum = x.odd; } if(f.val % 2 == 0) { x.sum += f.val * x.size; }else { swap(x.even, x.odd); x.sum += f.val * x.size; } return x; } F composition(F f, F g) { if(f.type1) { g.val = 0; g.type1 = 1; }else { g.val += f.val; } return g; } void solve() { int N, Q; cin >> N >> Q; vector A(N); for(int i = 0; i < N; i++) { int a; cin >> a; A[i] = S{a & 1, (a + 1) & 1, a, 1}; } atcoder::lazy_segtree seg(A); while(Q--) { int t; cin >> t; int l, r; cin >> l >> r; if(t == 1) { l--; seg.apply(l, r, F{0, 1}); }else if(t == 2) { l--; int x; cin >> x; seg.apply(l, r, F{x, 0}); }else { l--; cout << seg.prod(l, r).sum << endl; } } } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int tt = 1; // std::cin >> tt; while (tt--) { solve(); } }