This documentation is automatically generated by online-judge-tools/verification-helper
#define PROBLEM \
"http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_2_G"
#include "library/template/template.cpp"
// library
#include "library/structure/segtree/LazySegmentTree.cpp"
int main() {
int n, q;
cin >> n >> q;
RSRAQ<ll> seg(n);
rep(i, q) {
int t;
cin >> t;
if (t == 0) {
int s, t, x;
cin >> s >> t >> x;
s--;
seg.update(s, t, x);
} else {
int s, t;
cin >> s >> t;
s--;
print(seg.query(s, t));
}
}
}#line 1 "verify/aoj-DSL_2_G.test.cpp"
#define PROBLEM \
"http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_2_G"
#line 2 "library/template/template.cpp"
/* #region header */
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
// types
using ll = long long;
using ull = unsigned long long;
using ld = long double;
typedef pair<ll, ll> Pl;
typedef pair<int, int> Pi;
typedef vector<ll> vl;
typedef vector<int> vi;
typedef vector<char> vc;
template <typename T>
using mat = vector<vector<T>>;
typedef vector<vector<int>> vvi;
typedef vector<vector<long long>> vvl;
typedef vector<vector<char>> vvc;
// abreviations
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define rep_(i, a_, b_, a, b, ...) for (ll i = (a), max_i = (b); i < max_i; i++)
#define rep(i, ...) rep_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
#define rrep_(i, a_, b_, a, b, ...) \
for (ll i = (b - 1), min_i = (a); i >= min_i; i--)
#define rrep(i, ...) rrep_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
#define srep(i, a, b, c) for (ll i = (a), max_i = (b); i < max_i; i += c)
#define SZ(x) ((int)(x).size())
#define pb(x) push_back(x)
#define eb(x) emplace_back(x)
#define mp make_pair
//入出力
#define print(x) cout << x << endl
template <class T>
ostream &operator<<(ostream &os, const vector<T> &v)
{
for (auto &e : v)
cout << e << " ";
cout << endl;
return os;
}
void scan(int &a) { cin >> a; }
void scan(long long &a) { cin >> a; }
void scan(char &a) { cin >> a; }
void scan(double &a) { cin >> a; }
void scan(string &a) { cin >> a; }
template <class T>
void scan(vector<T> &a)
{
for (auto &i : a)
scan(i);
}
#define vsum(x) accumulate(all(x), 0LL)
#define vmax(a) *max_element(all(a))
#define vmin(a) *min_element(all(a))
#define lb(c, x) distance((c).begin(), lower_bound(all(c), (x)))
#define ub(c, x) distance((c).begin(), upper_bound(all(c), (x)))
// functions
// gcd(0, x) fails.
ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; }
ll lcm(ll a, ll b) { return a / gcd(a, b) * b; }
template <class T>
bool chmax(T &a, const T &b)
{
if (a < b)
{
a = b;
return 1;
}
return 0;
}
template <class T>
bool chmin(T &a, const T &b)
{
if (b < a)
{
a = b;
return 1;
}
return 0;
}
template <typename T>
T mypow(T x, ll n)
{
T ret = 1;
while (n > 0)
{
if (n & 1)
(ret *= x);
(x *= x);
n >>= 1;
}
return ret;
}
ll modpow(ll x, ll n, const ll mod)
{
ll ret = 1;
while (n > 0)
{
if (n & 1)
(ret *= x);
(x *= x);
n >>= 1;
x %= mod;
ret %= mod;
}
return ret;
}
ll safemod(ll x, ll mod) { return (x % mod + mod) % mod; }
int popcnt(ull x) { return __builtin_popcountll(x); }
template <typename T>
vector<int> IOTA(vector<T> a)
{
int n = a.size();
vector<int> id(n);
iota(all(id), 0);
sort(all(id), [&](int i, int j)
{ return a[i] < a[j]; });
return id;
}
long long xor64(long long range) {
static uint64_t x = 88172645463325252ULL;
x ^= x << 13;
x ^= x >> 7;
return (x ^= x << 17) % range;
}
struct Timer
{
clock_t start_time;
void start() { start_time = clock(); }
int lap()
{
// return x ms.
return (clock() - start_time) * 1000 / CLOCKS_PER_SEC;
}
};
template <typename T = int>
struct Edge
{
int from, to;
T cost;
int idx;
Edge() = default;
Edge(int from, int to, T cost = 1, int idx = -1)
: from(from), to(to), cost(cost), idx(idx) {}
operator int() const { return to; }
};
template <typename T = int>
struct Graph
{
vector<vector<Edge<T>>> g;
int es;
Graph() = default;
explicit Graph(int n) : g(n), es(0) {}
size_t size() const { return g.size(); }
void add_directed_edge(int from, int to, T cost = 1)
{
g[from].emplace_back(from, to, cost, es++);
}
void add_edge(int from, int to, T cost = 1)
{
g[from].emplace_back(from, to, cost, es);
g[to].emplace_back(to, from, cost, es++);
}
void read(int M, int padding = -1, bool weighted = false,
bool directed = false)
{
for (int i = 0; i < M; i++)
{
int a, b;
cin >> a >> b;
a += padding;
b += padding;
T c = T(1);
if (weighted)
cin >> c;
if (directed)
add_directed_edge(a, b, c);
else
add_edge(a, b, c);
}
}
};
/* #endregion*/
// constant
#define inf 1000000000ll
#define INF 4000000004000000000LL
#define endl '\n'
const long double eps = 0.000000000000001;
const long double PI = 3.141592653589793;
#line 5 "verify/aoj-DSL_2_G.test.cpp"
// library
#line 1 "library/structure/segtree/LazySegmentTree.cpp"
/**
* @brief Lazy-Segment-Tree(遅延伝搬セグメント木)
* @docs docs/lazy-segment-tree.md
*/
template <typename Monoid, typename OperatorMonoid>
struct LazySegmentTree {
int n, sz, height;
vector<Monoid> data;
vector<OperatorMonoid> lazy;
using F = function<Monoid(Monoid, Monoid)>;
using G = function<Monoid(Monoid, OperatorMonoid)>;
using H = function<OperatorMonoid(OperatorMonoid, OperatorMonoid)>;
const F f;
const G g;
const H h;
const Monoid M1;
const OperatorMonoid OM0;
LazySegmentTree(int n, const F f, const G g, const H h, const Monoid& M1,
const OperatorMonoid OM0)
: n(n), f(f), g(g), h(h), M1(M1), OM0(OM0) {
sz = 1;
height = 0;
while (sz < n) sz <<= 1, height++;
data.assign(2 * sz, M1);
lazy.assign(2 * sz, OM0);
}
void set(int k, const Monoid& x) { data[k + sz] = x; }
void build() {
for (int k = sz - 1; k > 0; k--) {
data[k] = f(data[2 * k + 0], data[2 * k + 1]);
}
}
inline void propagate(int k) {
if (lazy[k] != OM0) {
lazy[2 * k + 0] = h(lazy[2 * k + 0], lazy[k]);
lazy[2 * k + 1] = h(lazy[2 * k + 1], lazy[k]);
data[k] = apply(k);
lazy[k] = OM0;
}
}
inline Monoid apply(int k) {
return lazy[k] == OM0 ? data[k] : g(data[k], lazy[k]);
}
inline void recalc(int k) {
while (k >>= 1) data[k] = f(apply(2 * k + 0), apply(2 * k + 1));
}
inline void thrust(int k) {
for (int i = height; i > 0; i--) propagate(k >> i);
}
void update(int a, int b, const OperatorMonoid& x) {
if (a >= b) return;
thrust(a += sz);
thrust(b += sz - 1);
for (int l = a, r = b + 1; l < r; l >>= 1, r >>= 1) {
if (l & 1) lazy[l] = h(lazy[l], x), ++l;
if (r & 1) --r, lazy[r] = h(lazy[r], x);
}
recalc(a);
recalc(b);
}
Monoid query(int a, int b) {
if (a >= b) return M1;
thrust(a += sz);
thrust(b += sz - 1);
Monoid L = M1, R = M1;
for (int l = a, r = b + 1; l < r; l >>= 1, r >>= 1) {
if (l & 1) L = f(L, apply(l++));
if (r & 1) R = f(apply(--r), R);
}
return f(L, R);
}
Monoid operator[](const int& k) { return query(k, k + 1); }
template <typename C>
int find_subtree(int a, const C& check, Monoid& M, bool type) {
while (a < sz) {
propagate(a);
Monoid nxt =
type ? f(apply(2 * a + type), M) : f(M, apply(2 * a + type));
if (check(nxt))
a = 2 * a + type;
else
M = nxt, a = 2 * a + 1 - type;
}
return a - sz;
}
template <typename C>
int find_first(int a, const C& check) {
Monoid L = M1;
if (a <= 0) {
if (check(f(L, apply(1)))) return find_subtree(1, check, L, false);
return -1;
}
thrust(a + sz);
int b = sz;
for (a += sz, b += sz; a < b; a >>= 1, b >>= 1) {
if (a & 1) {
Monoid nxt = f(L, apply(a));
if (check(nxt)) return find_subtree(a, check, L, false);
L = nxt;
++a;
}
}
return -1;
}
template <typename C>
int find_last(int b, const C& check) {
Monoid R = M1;
if (b >= sz) {
if (check(f(apply(1), R))) return find_subtree(1, check, R, true);
return -1;
}
thrust(b + sz - 1);
int a = sz;
for (b += sz; a < b; a >>= 1, b >>= 1) {
if (b & 1) {
Monoid nxt = f(apply(--b), R);
if (check(nxt)) return find_subtree(b, check, R, true);
R = nxt;
}
}
return -1;
}
void show() {
rep(i, n) cout << query(i, i + 1) << ' ';
cout << endl;
}
};
template <class T, class F = T>
T myreplace(T x, F y) {
if (y != numeric_limits<F>::max()) x = y;
return x;
}
template <class T>
T mymax(T x, T y) {
return max(x, y);
}
template <class T>
T mymin(T x, T y) {
return min(x, y);
}
template <class T, class F = T>
T myadd(T x, F y) {
return x + y;
}
template <class T>
struct segobj {
T val;
int size;
segobj(T x, int y) : val(x), size(y) {}
segobj() : val(0), size(0) {}
segobj& operator+=(const segobj& p) {
val += p.val;
size += p.size;
return *this;
}
segobj& operator+=(const T& p) {
val += p * size;
return *this;
}
segobj& operator=(const T& p) {
val = p * size;
return *this;
}
friend ostream& operator<<(ostream& os, const segobj& p) {
return os << p.val;
}
segobj operator+(const segobj& p) const { return segobj(*this) += p; }
segobj operator+(const T& p) const { return segobj(*this) += p; }
};
template <class T>
struct RMRRQ : LazySegmentTree<T, T> {
using Seg = LazySegmentTree<T, T>;
RMRRQ(int n)
: Seg(n, mymax<T>, myreplace<T>, myreplace<T>, numeric_limits<T>::min(),
numeric_limits<T>::max()) {}
};
template <class T>
struct RmRRQ : LazySegmentTree<T, T> {
using Seg = LazySegmentTree<T, T>;
RmRRQ(int n)
: Seg(n, mymin<T>, myreplace<T>, myreplace<T>, numeric_limits<T>::max(),
numeric_limits<T>::max()) {}
};
template <class T>
struct RMRAQ : LazySegmentTree<T, T> {
using Seg = LazySegmentTree<T, T>;
RMRAQ(int n)
: Seg(n, mymax<T>, plus<T>(), plus<T>(), numeric_limits<T>::min() / 2,
T()) {}
};
template <class T>
struct RmRAQ : LazySegmentTree<T, T> {
using Seg = LazySegmentTree<T, T>;
RmRAQ(int n)
: Seg(n, mymin<T>, plus<T>(), plus<T>(), numeric_limits<T>::max() / 2,
T()) {}
};
template <class T>
struct RSRAQ : LazySegmentTree<segobj<T>, T> {
using Seg = LazySegmentTree<segobj<T>, T>;
RSRAQ(int n)
: Seg(n, plus<segobj<T>>(), myadd<segobj<T>, T>, plus<T>(), segobj<T>(),
T()) {
rep(i, n) this->set(i, segobj<T>(0, 1));
this->build();
}
T sum(int l, int r) { return this->query(l, r).val; }
};
// T = mintの時はnumerical_limits<mint>::max()を単位元の代わりにできないので
// M = intをして使う。
template <class T, class M = T>
struct RSRRQ : LazySegmentTree<segobj<T>, M> {
using Seg = LazySegmentTree<segobj<T>, M>;
using obj = segobj<T>;
RSRRQ(int n)
: Seg(n, plus<obj>(), myreplace<obj, M>, myreplace<M>, segobj<T>(),
numeric_limits<M>::max()) {
rep(i, n) this->set(i, segobj<T>(0, 1));
this->build();
}
T sum(int l, int r) { return this->query(l, r).val; }
};
#line 7 "verify/aoj-DSL_2_G.test.cpp"
int main() {
int n, q;
cin >> n >> q;
RSRAQ<ll> seg(n);
rep(i, q) {
int t;
cin >> t;
if (t == 0) {
int s, t, x;
cin >> s >> t >> x;
s--;
seg.update(s, t, x);
} else {
int s, t;
cin >> s >> t;
s--;
print(seg.query(s, t));
}
}
}