結果

問題 No.789 範囲の合計
ユーザー tomatoma
提出日時 2019-09-09 01:00:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 977 ms / 1,000 ms
コード長 1,566 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 179,088 KB
実行使用メモリ 45,940 KB
最終ジャッジ日時 2024-06-27 15:19:30
合計ジャッジ時間 10,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 915 ms
42,304 KB
testcase_03 AC 293 ms
5,376 KB
testcase_04 AC 977 ms
42,876 KB
testcase_05 AC 777 ms
42,336 KB
testcase_06 AC 820 ms
42,452 KB
testcase_07 AC 550 ms
5,376 KB
testcase_08 AC 854 ms
45,940 KB
testcase_09 AC 789 ms
42,868 KB
testcase_10 AC 643 ms
25,444 KB
testcase_11 AC 614 ms
42,424 KB
testcase_12 AC 614 ms
42,304 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include"bits/stdc++.h"
using namespace std;
#define REP(k,m,n) for(int (k)=(m);(k)<(n);(k)++)
#define rep(i,n) REP((i),0,(n))
using ll = long long;


template<typename T>
class DynamicSegmentTree {
private:
	//using F = function<T(T, T)>; // モノイド型
	const static ll n = 1ll << 30; // 横幅
	//const F f;   // モノイド
	const T e;   // モノイド単位元
	unordered_map<ll, T> data;

	// 存在しないindexではeを返します
	T at(ll idx) {
		return data.find(idx) == data.end() ? e : data[idx];
	}

public:
	// init忘れに注意
	DynamicSegmentTree(T e) :e(e) {}

	void set_val(ll idx, T val) {
		idx += n - 1;
		data[idx] = val;
		while (idx > 0) {
			idx = (idx - 1) / 2;
			data[idx] = //f(
				at(2 * idx + 1) +
				at(2 * idx + 2);
			//);
		}
	}

	T query(ll a, ll b, ll k = 0, ll l = 0, ll r = n) {
		if (r <= a || b <= l)return e;
		if (a <= l && r <= b) {
			return data.find(k) == data.end() ? e : data[k];
		}
		else {
			T vl = data.find(2 * k + 1) == data.end()
				? e
				: query(a, b, 2 * k + 1, l, (l + r) / 2);
			T vr = data.find(2 * k + 2) == data.end()
				? e
				: query(a, b, 2 * k + 2, (l + r) / 2, r);
			//return f(vl, vr);
			return vl + vr;
		}
	}
};

int main()
{
	int n;
	cin >> n;

	function<ll(ll, ll)> f = [](ll a, ll b) {return a + b; };
	DynamicSegmentTree<ll> dst(0);

	ll res = 0;
	while (n--) {
		int com, x, y;
		cin >> com >> x >> y;
		if (com == 0) {
			ll now = dst.query(x, x + 1);
			dst.set_val(x, now + y);
		}
		else {
			res += dst.query(x, y + 1);
		}
	}
	cout << res << endl;
	return 0;
}
0