This documentation is automatically generated by online-judge-tools/verification-helper
#define PROBLEM "https://judge.yosupo.jp/problem/point_set_range_composite"
#include <bits/stdc++.h> // clang-format off
using Int = long long;
#define REP_(i, a_, b_, a, b, ...) for (Int i = (a), lim##i = (b); i < lim##i; i++)
#define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
struct SetupIO { SetupIO() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false), std::cout << std::fixed << std::setprecision(13); } } setup_io;
#ifndef _MY_DEBUG
#define dump(...)
#endif // clang-format on
/**
* author: knshnb
* created: Sun Mar 29 16:52:02 JST 2020
**/
#define CALL_FROM_TEST
#include "../../src/Math/ModInt.hpp"
#include "../../src/DataStructure/SegmentTree.hpp"
#undef CALL_FROM_TEST
using mint = ModInt<998244353>;
using pmm = std::pair<mint, mint>;
signed main() {
Int n, Q;
std::cin >> n >> Q;
std::vector<pmm> a(n);
REP(i, n) std::cin >> a[i].first >> a[i].second;
auto seg = make_segment_tree<pmm>(
[](pmm x, pmm y) {
return pmm{x.first * y.first, y.first * x.second + y.second};
},
{1, 0});
seg.set_by_vector(a);
REP(q, Q) {
Int c, x, y, z;
std::cin >> c >> x >> y >> z;
if (c == 0) {
seg.update(x, {y, z});
} else {
pmm tmp = seg.query(x, y);
std::cout << tmp.first * z + tmp.second << "\n";
}
}
}
#line 1 "test/yosupo/point_set_range_composite.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/point_set_range_composite"
#include <bits/stdc++.h> // clang-format off
using Int = long long;
#define REP_(i, a_, b_, a, b, ...) for (Int i = (a), lim##i = (b); i < lim##i; i++)
#define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
struct SetupIO { SetupIO() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false), std::cout << std::fixed << std::setprecision(13); } } setup_io;
#ifndef _MY_DEBUG
#define dump(...)
#endif // clang-format on
/**
* author: knshnb
* created: Sun Mar 29 16:52:02 JST 2020
**/
#define CALL_FROM_TEST
#line 1 "src/Math/ModInt.hpp"
template <class T> T pow(T x, long long n, const T UNION = 1) {
T ret = UNION;
while (n) {
if (n & 1) ret *= x;
x *= x;
n >>= 1;
}
return ret;
}
/// @docs src/Math/ModInt.md
template <int Mod> struct ModInt {
int x;
static int& runtime_mod() {
static int runtime_mod_;
return runtime_mod_;
}
// テンプレート引数が負のときは実行時ModInt
static constexpr int mod() { return Mod < 0 ? runtime_mod() : Mod; }
static std::unordered_map<int, int>& to_inv() {
static std::unordered_map<int, int> to_inv_;
return to_inv_;
}
static void set_runtime_mod(int mod) {
static_assert(Mod < 0, "template parameter Mod must be negative for runtime ModInt");
runtime_mod() = mod, to_inv().clear();
}
ModInt() : x(0) {}
ModInt(long long x_) {
if ((x = x_ % mod() + mod()) >= mod()) x -= mod();
}
ModInt& operator+=(ModInt rhs) {
if ((x += rhs.x) >= mod()) x -= mod();
return *this;
}
ModInt& operator*=(ModInt rhs) {
x = (unsigned long long)x * rhs.x % mod();
return *this;
}
ModInt& operator-=(ModInt rhs) {
if ((x -= rhs.x) < 0) x += mod();
return *this;
}
ModInt& operator/=(ModInt rhs) {
ModInt inv = to_inv().count(rhs.x) ? to_inv()[rhs.x] : (to_inv()[rhs.x] = pow(rhs, mod() - 2).x);
return *this *= inv;
}
ModInt operator-() const { return -x < 0 ? mod() - x : -x; }
ModInt operator+(ModInt rhs) const { return ModInt(*this) += rhs; }
ModInt operator*(ModInt rhs) const { return ModInt(*this) *= rhs; }
ModInt operator-(ModInt rhs) const { return ModInt(*this) -= rhs; }
ModInt operator/(ModInt rhs) const { return ModInt(*this) /= rhs; }
bool operator==(ModInt rhs) const { return x == rhs.x; }
bool operator!=(ModInt rhs) const { return x != rhs.x; }
// 計算結果をmapに保存するべき乗
ModInt save_pow(int n) const {
static std::map<std::pair<int, int>, int> tbl_pow;
if (tbl_pow.count({x, n})) return tbl_pow[{x, n}];
if (n == 0) return 1;
if (n % 2) return tbl_pow[{x, n}] = (*this * save_pow(n - 1)).x;
return tbl_pow[{x, n}] = (save_pow(n / 2) * save_pow(n / 2)).x;
}
// 1 + r + r^2 + ... + r^(n-1)を逆元がない(modが素数でない)場合に計算
static ModInt geometric_progression(ModInt r, int n) {
if (n == 0) return 0;
if (n % 2) return geometric_progression(r, n - 1) + r.save_pow(n - 1);
return geometric_progression(r, n / 2) * (r.save_pow(n / 2) + 1);
}
// a + r * (a - d) + r^2 * (a - 2d) + ... + r^(n-1) * (a - (n - 1)d)
static ModInt linear_sum(ModInt r, ModInt a, ModInt d, int n) {
if (n == 0) return 0;
if (n % 2) return linear_sum(r, a, d, n - 1) + r.save_pow(n - 1) * (a - d * (n - 1));
return linear_sum(r, a, d, n / 2) * (r.save_pow(n / 2) + 1) -
d * (n / 2) * r.save_pow(n / 2) * geometric_progression(r, n / 2);
}
friend std::ostream& operator<<(std::ostream& s, ModInt<Mod> a) { return s << a.x; }
friend std::istream& operator>>(std::istream& s, ModInt<Mod>& a) {
long long tmp;
s >> tmp;
a = ModInt<Mod>(tmp);
return s;
}
friend std::string to_string(ModInt<Mod> a) { return std::to_string(a.x); }
};
#ifndef CALL_FROM_TEST
using mint = ModInt<1000000007>;
#endif
#line 1 "src/DataStructure/SegmentTree.hpp"
/// @docs src/DataStructure/SegmentTree.md
template <class T, class F> struct SegmentTree {
const F op;
const T e;
SegmentTree(F op_, T e_) : op(op_), e(e_) {}
int n;
std::vector<T> t;
void set_by_identity(int n_) {
n = n_;
t.clear(), t.resize(2 * n, e);
}
void set_by_vector(const std::vector<T>& a) {
n = a.size();
t.clear(), t.resize(2 * n, e);
for (int i = 0; i < n; i++) t[i + n] = a[i];
build();
}
void build() {
for (int i = n - 1; i; --i) t[i] = op(t[2 * i], t[2 * i + 1]);
}
T& operator[](int i) { return t[i + n]; }
// [l, r)
T query(int l, int r) const {
assert(0 <= l && l <= r && r <= n);
T resl = e, resr = e;
for (l += n, r += n; l < r; l >>= 1, r >>= 1) {
if (l & 1) resl = op(resl, t[l++]);
if (r & 1) resr = op(t[--r], resr);
}
return op(resl, resr);
}
// i番目をxに変更
void update(int i, const T& x) {
assert(0 <= i && i < n);
t[i += n] = x;
while (i >>= 1) t[i] = op(t[2 * i], t[2 * i + 1]);
}
// i番目にxを作用 (a[i] = op(a[i], x))
void operate(int i, const T& x) {
assert(0 <= i && i < n);
i += n;
t[i] = op(t[i], x);
while (i >>= 1) t[i] = op(t[2 * i], t[2 * i + 1]);
}
friend std::string to_string(const SegmentTree<T, F>& seg) {
return to_string(std::vector<T>(seg.t.begin() + seg.n, seg.t.end()));
}
};
template <class T, class F> auto make_segment_tree(F op, T e) { return SegmentTree<T, F>(op, e); }
#line 20 "test/yosupo/point_set_range_composite.test.cpp"
#undef CALL_FROM_TEST
using mint = ModInt<998244353>;
using pmm = std::pair<mint, mint>;
signed main() {
Int n, Q;
std::cin >> n >> Q;
std::vector<pmm> a(n);
REP(i, n) std::cin >> a[i].first >> a[i].second;
auto seg = make_segment_tree<pmm>(
[](pmm x, pmm y) {
return pmm{x.first * y.first, y.first * x.second + y.second};
},
{1, 0});
seg.set_by_vector(a);
REP(q, Q) {
Int c, x, y, z;
std::cin >> c >> x >> y >> z;
if (c == 0) {
seg.update(x, {y, z});
} else {
pmm tmp = seg.query(x, y);
std::cout << tmp.first * z + tmp.second << "\n";
}
}
}