#if 1 // clang-format off #include #include using namespace atcoder; typedef modint998244353 mint93; typedef modint1000000007 mint17; typedef modint mint; using namespace std; using uint = unsigned int; using ll = long long; using ull = unsigned long long; using lf = long double; using pll = pair; #define vec vector template using v = vector; template using vv = v>; template using vvv = v>; using vl = v; using vvl = vv; using vvvl = vvv; constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n - 1); } #define FOR(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) #define rep(i, N) for (ll i = 0; i < (ll)(N); i++) #define rep1(i, N) for (ll i = 1; i <= (ll)(N); i++) #define rrep(i, N) for (ll i = N - 1; i >= 0; i--) #define rrep1(i, N) for (ll i = N; i > 0; i--) #define fore(i, a) for (auto &i : a) #define fs first #define sc second #define eb emplace_back #define pb push_back #define all(x) (x).begin(), (x).end() #define UNIQUE(x) (x).erase(unique((x).begin(), (x).end()), (x).end()); #define YES(x) cout << ((x) ? "YES\n" : "NO\n"); #define Yes(x) cout << ((x) ? "Yes\n" : "No\n"); #define yes(x) cout << ((x) ? "yes\n" : "no\n"); #define min(x, y) ((x) < (y) ? (x) : (y)) #define max(x, y) ((x) > (y) ? (x) : (y)) template void chmin(T &t, const U &u) { if (t > u) t = u; } template void chmax(T &t, const U &u) { if (t < u) t = u; } const int inf = (1 << 29); const ll infl = (1LL << 60); const ll mod93 = 998244353; const ll mod17 = 1000000007; int popcnt(uint x) { return __builtin_popcount(x); } int popcnt(ull x) { return __builtin_popcountll(x); } int bsr(uint x) { return 31 - __builtin_clz(x); } int bsr(ull x) { return 63 - __builtin_clzll(x); } int bsf(uint x) { return __builtin_ctz(x); } int bsf(ull x) { return __builtin_ctzll(x); } template istream &operator>>(istream &is, vector &x) { for (auto &y : x) is >> y; return is; } template ostream &operator<<(ostream &os, vector &x) { for (unsigned int i = 0, size = x.size(); i < size; i++) os << x[i] << (i == size - 1 ? "" : " "); return os; } template istream &operator>>(istream &is, pair &x) { return is >> x.first >> x.second; } template ostream &operator<<(ostream &os, pair &x) { return os << x.first << " " << x.second; } ll rand_int(ll l, ll r) { // [l, r] static random_device rd; static mt19937 gen(rd()); return uniform_int_distribution(l, r)(gen); } template struct binomial { long long n; std::vector> fact, ifact; binomial(long long n) : n(n), fact(n + 1), ifact(n + 1) { fact[0] = 1; for (int i = 1; i <= n; i++) fact[i] = fact[i - 1] * i; ifact[n] = fact[n].inv(); for (int i = n; i > 0; i--) ifact[i - 1] = ifact[i] * i; } atcoder::static_modint operator()(int n, int k) { if (k < 0 || k > n) return 0; return fact[n] * ifact[k] * ifact[n - k]; } }; // clang-format on #endif // #define _GLIBCXX_DEBUG vl e() { return {-infl, 0, 0, 0, -infl}; } vl op(vl a, vl b) { vl ret = e(); chmax(ret[0], max(a[0], b[0])); chmax(ret[0], a[3] + b[1]); ret[1] = max(a[1], a[2] + b[1]); ret[2] = a[2] + b[2]; ret[3] = max(a[3] + b[2], b[3]); chmax(ret[4], max(a[4], b[4])); ret[0] = *max_element(all(ret)); return ret; } void solve() { ll n; cin >> n; vl a(n), b(n); rep(i, n) cin >> a[i] >> b[i]; vl c(n + 1); rep(i, n) c[i + 1] = c[i] + b[i]; ll q; cin >> q; vvl query(q, vl(3)); cin >> query; vl d = c; rep(i, q) { if (query[i][0] == 1) { ll x = query[i][1]; d.eb(x); d.eb(x + 1); } if (query[i][0] == 1) { ll l = query[i][1] - 1; ll r = query[i][1]; d.eb(l); d.eb(r); } } sort(all(d)); UNIQUE(d); ll m = d.size(); segtree seg(m); rep(i, m - 1) { ll l = d[i]; ll r = d[i + 1]; auto itr = lower_bound(all(c), r); ll j = itr - c.begin() - 1; ll tmp = a[j] * (r - l); seg.set(i, {tmp, tmp, tmp, tmp, a[j]}); } /* rep(i, m - 1) { vl tmp = seg.get(i); cout << i << ": " << tmp << "\n"; } //*/ rep(i, q) { if (query[i][0] == 1) { ll x = query[i][1] - 1; ll y = query[i][2]; ll j = lower_bound(all(d), x) - d.begin(); seg.set(j, {y, y, y, y, y}); } if (query[i][0] == 2) { ll l = query[i][1] - 1; ll r = query[i][2]; ll lj = upper_bound(all(d), l) - d.begin() - 1; ll rj = lower_bound(all(d), r) - d.begin(); // cout << l << " " << r << ": " << lj << " " << rj << endl; vl ans = seg.prod(lj, rj); if(ans[0] == 0) ans[0] = ans[4]; cout << ans[0] << "\n"; } } } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); ll t = 1; // cin >> t; while (t--) solve(); }