結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー kwm_tkwm_t
提出日時 2022-10-15 18:37:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 375 ms / 6,000 ms
コード長 1,911 bytes
コンパイル時間 4,756 ms
コンパイル使用メモリ 269,448 KB
実行使用メモリ 30,452 KB
最終ジャッジ日時 2024-06-26 20:13:50
合計ジャッジ時間 20,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 140 ms
20,724 KB
testcase_04 AC 249 ms
25,104 KB
testcase_05 AC 134 ms
15,924 KB
testcase_06 AC 219 ms
23,988 KB
testcase_07 AC 247 ms
25,804 KB
testcase_08 AC 244 ms
26,020 KB
testcase_09 AC 111 ms
14,716 KB
testcase_10 AC 103 ms
14,080 KB
testcase_11 AC 175 ms
18,440 KB
testcase_12 AC 178 ms
18,496 KB
testcase_13 AC 118 ms
14,764 KB
testcase_14 AC 139 ms
11,948 KB
testcase_15 AC 282 ms
27,168 KB
testcase_16 AC 214 ms
24,488 KB
testcase_17 AC 95 ms
10,248 KB
testcase_18 AC 364 ms
30,196 KB
testcase_19 AC 355 ms
30,192 KB
testcase_20 AC 364 ms
30,188 KB
testcase_21 AC 351 ms
30,192 KB
testcase_22 AC 358 ms
30,452 KB
testcase_23 AC 348 ms
30,320 KB
testcase_24 AC 360 ms
30,320 KB
testcase_25 AC 357 ms
30,320 KB
testcase_26 AC 366 ms
30,192 KB
testcase_27 AC 365 ms
30,192 KB
testcase_28 AC 346 ms
30,316 KB
testcase_29 AC 366 ms
30,192 KB
testcase_30 AC 353 ms
30,192 KB
testcase_31 AC 375 ms
30,192 KB
testcase_32 AC 375 ms
30,192 KB
testcase_33 AC 297 ms
30,196 KB
testcase_34 AC 308 ms
30,320 KB
testcase_35 AC 296 ms
30,192 KB
testcase_36 AC 309 ms
30,196 KB
testcase_37 AC 305 ms
30,188 KB
testcase_38 AC 70 ms
12,600 KB
testcase_39 AC 112 ms
14,528 KB
testcase_40 AC 204 ms
30,124 KB
testcase_41 AC 2 ms
5,376 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<long long,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; }
long long op(long long a, long long b) { return a + b; }
long long e() { return 0; }
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<long long>a(n), t(n);
	vector<P>eve;
	rep(i, n) {
		cin >> a[i] >> t[i];
		eve.push_back({ 0 + t[i] * 3 ,i });
		long long t0 = a[i] + t[i];
		eve.push_back({ 1 + t0 * 3 ,i });
	}
	int q; cin >> q;
	vector<long long>d(q), l(q), r(q);
	rep(i, q) {
		cin >> d[i] >> l[i] >> r[i];
		l[i]--; r[i]--;
		eve.push_back({ 2 + d[i] * 3 ,i });
	}
	sort(all(eve));
	segtree<long long, op, e>seg0(a);
	segtree<long long, op, e>seg1(n);
	vector<long long>ans(q);
	rep(i, eve.size()) {
		auto[time, idx] = eve[i];
		if (0 == time % 3) {
			long long val = a[idx] + t[idx] - 1;
			seg0.set(idx, val);
			seg1.set(idx, 1);
		}
		else if (1 == time % 3) {
			seg0.set(idx, 0);
			seg1.set(idx, 0);
		}
		else {
			auto get0 = seg0.prod(l[idx], r[idx] + 1);
			auto get1 = seg1.prod(l[idx], r[idx] + 1);
			ans[idx] = get0;
			time /= 3;
			ans[idx] -= get1 * time;
		}
	}
	rep(i, q)cout << ans[i] << endl;
	return 0;
}
0