#include #include #include #include #include #include #include #include #include #include #include #include #include #include typedef long long ll; using namespace std; const ll MOD = 1000000007LL; typedef pair P; typedef pair PP; template class LazySegmentTree { using F = function; using G = function; using H = function; int n, height; F f; G g; H h; T t; E e; vector dat; vector laz; public: LazySegmentTree(F f, G g, H h, T t, E e): f(f), g(g), h(h), t(t), e(e) {} void init(int n_) { n = 1; height = 0; while (n < n_) { n <<= 1; height++; } dat.assign(2 * n, t); laz.assign(2 * n, e); } void build(const vector &v) { auto n_ = (int)v.size(); init(n_); for (int i = 0; i < n_; i++) dat[n + i] = v[i]; for (int i = n - 1; i > 0; i--) dat[i] = f(dat[(i << 1) | 0], dat[(i << 1) | 1]); } inline T reflect(int k) { return laz[k] == e ? dat[k] : g(dat[k], laz[k]); } inline void eval(int k) { if (laz[k] == e) return; laz[(k << 1) | 0] = h(laz[(k << 1) | 0], laz[k]); laz[(k << 1) | 1] = h(laz[(k << 1) | 1], laz[k]); dat[k] = reflect(k); laz[k] = e; } inline void thrust(int k) { for (int i = height; i > 0; i--) { eval(k >> i); } } inline void recalc(int k) { while (k >>= 1) { dat[k] = f(reflect((k << 1) | 0), reflect((k << 1) | 1)); } } void update(int a, int b, E x) { thrust(a += n); thrust(b += n - 1); for (int l = a, r = b + 1; l < r; l >>= 1, r >>= 1) { if (l & 1) laz[l] = h(laz[l], x), l++; if (r & 1) --r, laz[r] = h(laz[r], x); } recalc(a); recalc(b); } void set_val(int a, T x) { thrust(a += n); dat[a] = x; laz[a] = e; recalc(a); } T query(int a, int b) { thrust(a += n); thrust(b += n - 1); T vl = t, vr = t; for (int l = a, r = b + 1; l < r; l >>= 1, r >>= 1) { if (l & 1) vl = f(vl, reflect(l++)); if (r & 1) vr = f(reflect(--r), vr); } return f(vl, vr); } }; struct Node { ll val, left, right; }; int main() { cin.sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, q; cin >> n >> q; vector a(n); for (int i = 0; i < n; i++) { cin >> a[i].left; a[i].right = a[i].left; a[i].val = 1; } auto f = [](Node a, Node b) { ll v = a.val + b.val - 1; if (a.right && b.left && a.right != b.left) v++; return (Node){v, a.left, b.right}; }; auto g = [](Node a, ll b) { return (Node){a.val, a.left + b, a.right + b}; }; auto h = [](ll a, ll b) { return a + b; }; LazySegmentTree seg(f, g, h, (Node){1, 0, 0}, 0); seg.build(a); while (q--) { ll c, l, r, x; cin >> c >> l >> r; if (c == 1) { cin >> x; seg.update(l - 1, r, x); } else { cout << seg.query(l - 1, r).val << '\n'; } } return 0; }