cplib-cpp

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub hitonanode/cplib-cpp

:heavy_check_mark: segmenttree/test/rangetree.test.cpp

Depends on

Code

#define PROBLEM "https://judge.yosupo.jp/problem/point_add_rectangle_sum"
#include "../rangetree.hpp"
#include <iostream>
#include <tuple>
#include <vector>
using namespace std;

using S = unsigned long long;
S op(S l, S r) noexcept { return l + r; }
S e() noexcept { return 0; }

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N, Q;
    cin >> N >> Q;
    std::vector<int> x(N), y(N), w(N);
    rangetree<S, op, e, int> tree;

    for (int i = 0; i < N; i++) {
        cin >> x[i] >> y[i] >> w[i];
        tree.add_point(x[i], y[i]);
    }
    std::vector<std::tuple<int, int, int, int, int>> qs;
    for (int i = 0; i < Q; i++) {
        int t;
        cin >> t;
        if (t == 0) {
            int x, y, w;
            cin >> x >> y >> w;
            qs.emplace_back(t, x, y, w, 0);
            tree.add_point(x, y);
        } else {
            int l, d, r, u;
            cin >> l >> d >> r >> u;
            qs.emplace_back(t, l, r, d, u);
        }
    }
    tree.build();
    for (int i = 0; i < N; i++) tree.add(x[i], y[i], w[i]);
    for (auto q : qs) {
        if (std::get<0>(q) == 0) {
            int t, x, y, w, z;
            tie(t, x, y, w, z) = q;
            tree.add(x, y, w);
        } else {
            int t, l, r, d, u;
            tie(t, l, r, d, u) = q;
            cout << tree.prod(l, r, d, u) << '\n';
        }
    }
}
Traceback (most recent call last):
  File "/opt/hostedtoolcache/Python/3.12.6/x64/lib/python3.12/site-packages/onlinejudge_verify/documentation/build.py", line 71, in _render_source_code_stat
    bundled_code = language.bundle(stat.path, basedir=basedir, options={'include_paths': [basedir]}).decode()
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/opt/hostedtoolcache/Python/3.12.6/x64/lib/python3.12/site-packages/onlinejudge_verify/languages/cplusplus.py", line 187, in bundle
    bundler.update(path)
  File "/opt/hostedtoolcache/Python/3.12.6/x64/lib/python3.12/site-packages/onlinejudge_verify/languages/cplusplus_bundle.py", line 401, in update
    self.update(self._resolve(pathlib.Path(included), included_from=path))
  File "/opt/hostedtoolcache/Python/3.12.6/x64/lib/python3.12/site-packages/onlinejudge_verify/languages/cplusplus_bundle.py", line 401, in update
    self.update(self._resolve(pathlib.Path(included), included_from=path))
  File "/opt/hostedtoolcache/Python/3.12.6/x64/lib/python3.12/site-packages/onlinejudge_verify/languages/cplusplus_bundle.py", line 355, in update
    raise BundleErrorAt(path, i + 1, "found codes out of include guard")
onlinejudge_verify.languages.cplusplus_bundle.BundleErrorAt: segmenttree/acl_segtree.hpp: line 37: found codes out of include guard
Back to top page