結果
問題 | No.789 範囲の合計 |
ユーザー | kyo1 |
提出日時 | 2024-03-10 00:31:19 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 173 ms / 1,000 ms |
コード長 | 2,859 bytes |
コンパイル時間 | 885 ms |
コンパイル使用メモリ | 99,032 KB |
実行使用メモリ | 34,688 KB |
最終ジャッジ日時 | 2024-09-29 21:24:12 |
合計ジャッジ時間 | 2,902 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 155 ms
28,544 KB |
testcase_03 | AC | 44 ms
5,248 KB |
testcase_04 | AC | 173 ms
31,872 KB |
testcase_05 | AC | 140 ms
27,520 KB |
testcase_06 | AC | 144 ms
28,800 KB |
testcase_07 | AC | 40 ms
5,248 KB |
testcase_08 | AC | 162 ms
34,688 KB |
testcase_09 | AC | 149 ms
31,872 KB |
testcase_10 | AC | 123 ms
19,968 KB |
testcase_11 | AC | 105 ms
28,160 KB |
testcase_12 | AC | 99 ms
28,160 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
ソースコード
#include <bit> #include <cassert> #include <iostream> #include <memory> template <typename F> class FixPoint : private F { public: template <typename G> explicit constexpr FixPoint(G&& g) : F(std::forward<G>(g)) {} template <typename... Args> constexpr decltype(auto) operator()(Args&&... args) const { return F::operator()(*this, std::forward<Args>(args)...); } }; template <typename F> FixPoint(F&&) -> FixPoint<std::decay_t<F>>; template <typename T, T Identity, auto Operate> class DynamicSegmentTree { public: explicit DynamicSegmentTree(const std::size_t size) : size(std::bit_ceil(size) << 1), root(std::make_unique<Node>(Identity)) {} void update(const std::size_t index, const T value) { assert(index < size); FixPoint([&](const auto& rec, std::unique_ptr<Node>& node, const std::size_t left, const std::size_t right) { if (!node) node = std::make_unique<Node>(Identity); if (left + 1 == right) { node->value = value; return; } const auto i = left + ((right - left) >> 1); if (index < i) { rec(node->left, left, i); } else { rec(node->right, i, right); } node->value = Operate(value_of_node(node->left), value_of_node(node->right)); })(root, 0, size); } T fold(const std::size_t left, const std::size_t right) const { // [left, right) assert(left < right && right <= size); return FixPoint([&](const auto& rec, const std::unique_ptr<Node>& node, const std::size_t l, const std::size_t r) { if (!node || right <= l || r <= left) return Identity; if (left <= l && r <= right) return node->value; const auto i = l + ((r - l) >> 1); return Operate(rec(node->left, l, i), rec(node->right, i, r)); })(root, 0, size); } private: class Node { private: friend DynamicSegmentTree; friend std::unique_ptr<Node> std::make_unique<Node>(T&&); explicit Node(const T& value) : value(value) {} std::unique_ptr<Node> left; std::unique_ptr<Node> right; T value; }; inline T value_of_node(const std::unique_ptr<Node>& node) const { return node ? node->value : Identity; } const std::size_t size; std::unique_ptr<Node> root; }; int main() { std::cin.tie(nullptr)->sync_with_stdio(false); int N; std::cin >> N; DynamicSegmentTree<int64_t, 0, [](const auto a, const auto b) { return a + b; }> dst(1000000001); int64_t res = 0; for (int i = 0; i < N; i++) { int q; std::cin >> q; switch (q) { case 0: { int x, y; std::cin >> x >> y; dst.update(x, dst.fold(x, x + 1) + y); break; } case 1: { int l, r; std::cin >> l >> r; r++; res += dst.fold(l, r); } } } std::cout << res << '\n'; return 0; }