結果

問題 No.2333 Slime Structure
ユーザー kwm_tkwm_t
提出日時 2023-05-31 21:39:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 245 ms / 3,000 ms
コード長 2,600 bytes
コンパイル時間 5,164 ms
コンパイル使用メモリ 271,440 KB
実行使用メモリ 52,584 KB
最終ジャッジ日時 2024-06-08 21:13:04
合計ジャッジ時間 14,724 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 110 ms
27,684 KB
testcase_03 AC 147 ms
31,904 KB
testcase_04 AC 160 ms
31,676 KB
testcase_05 AC 125 ms
29,284 KB
testcase_06 AC 175 ms
33,308 KB
testcase_07 AC 224 ms
52,548 KB
testcase_08 AC 223 ms
52,544 KB
testcase_09 AC 220 ms
52,552 KB
testcase_10 AC 213 ms
52,552 KB
testcase_11 AC 219 ms
52,544 KB
testcase_12 AC 217 ms
52,548 KB
testcase_13 AC 220 ms
52,548 KB
testcase_14 AC 220 ms
52,416 KB
testcase_15 AC 221 ms
52,584 KB
testcase_16 AC 224 ms
52,552 KB
testcase_17 AC 226 ms
52,548 KB
testcase_18 AC 230 ms
52,548 KB
testcase_19 AC 226 ms
52,544 KB
testcase_20 AC 230 ms
52,544 KB
testcase_21 AC 226 ms
52,552 KB
testcase_22 AC 242 ms
52,416 KB
testcase_23 AC 245 ms
52,508 KB
testcase_24 AC 242 ms
52,548 KB
testcase_25 AC 238 ms
52,552 KB
testcase_26 AC 238 ms
52,552 KB
testcase_27 AC 240 ms
52,420 KB
testcase_28 AC 240 ms
52,552 KB
testcase_29 AC 239 ms
52,420 KB
testcase_30 AC 242 ms
52,420 KB
testcase_31 AC 242 ms
52,424 KB
testcase_32 AC 214 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
struct S {
	long long lmax;
	long long rmax;
	long long max;
	long long sum;
};
S op(S a, S b) {
	return S{ max(a.lmax, a.sum + b.lmax),
			 max(b.rmax, b.sum + a.rmax),
			 max(max(a.max, b.max), a.rmax + b.lmax),
			 a.sum + b.sum };
}
S e() { return S{ -LINF, -LINF, -LINF, 0 }; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	//#pragma warning(disable : 4996)
		//FILE *in = freopen("in/in.txt", "r", stdin);
		//FILE *out = freopen("out/out.txt", "w", stdout);
	int n; cin >> n;
	vector<long long>a(n), b(n), sb(n + 1);
	rep(i, n)cin >> a[i] >> b[i];
	rep(i, n)sb[i + 1] = sb[i] + b[i];
	vector<long long>tmp = { 0 };
	rep(i, n) {
		tmp.push_back(sb[i + 1]);
	}
	int q; cin >> q;
	vector<long long>t(q), l(q), r(q);
	rep(i, q) {
		cin >> t[i] >> l[i] >> r[i];
		l[i]--;
		if (1 == t[i]) {
			tmp.push_back(l[i]);
			tmp.push_back(l[i] + 1);//??
		}
		else {
			tmp.push_back(l[i]);
			tmp.push_back(r[i]);
		}
	}
	sort(all(tmp));
	tmp.erase(unique(all(tmp)), tmp.end());
	//rep(i, n + 1) sb[i] = lower_bound(all(tmp), sb[i]) - tmp.begin();
	int sz = tmp.size();
	segtree<S, op, e>seg(sz);
	auto set = [&](int idx, long long sz, long long val)->void {
		if (val >= 0) {
			seg.set(idx, { sz* val, sz*val, sz*val, sz*val });
		}
		else {
			seg.set(idx, { val, val, val, sz*val });
		}
	};
	rep(i, sz - 1) {
		long long sz = tmp[i + 1] - tmp[i];
		int idx = upper_bound(all(sb), tmp[i]) - sb.begin();
		set(i, sz, a[idx - 1]);
	}
	rep(i, q) {
		if (1 == t[i]) {
			int idx = lower_bound(all(tmp), l[i]) - tmp.begin();
			set(idx, 1, r[i]);
		}
		else {
			int idxl = lower_bound(all(tmp), l[i]) - tmp.begin();
			int idxr = lower_bound(all(tmp), r[i]) - tmp.begin();
			auto get = seg.prod(idxl, idxr);
			cout << get.max << endl;
		}
	}
	return 0;
}
0