CompProgLibrary

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

View the Project on GitHub RTnF/CompProgLibrary

:warning: 1次元累積和
(cpp/array/cumulative_sum.hpp)

Depends on

Code

#pragma once
#include "template/small_template.hpp"

/**
 * @brief 1次元累積和
 * 構築 O(n)
 * 更新不可
 * 部分和 O(1)
 * @tparam T
 */
template <class T = ll> class CumulativeSum {
  vector<T> cs;
  int n;

public:
  CumulativeSum(const vector<T> &v) : cs(v.size() + 1), n(v.size()) {
    cs[0] = T(0);
    for (int i = 1; i <= n; i++) {
      cs[i] = cs[i - 1] + v[i - 1];
    }
  }
  // [0, a) 0-n
  T sum(int a) {
    assert(0 <= a && a <= n);
    return cs[a];
  }
  // [a, b) 0-a-b-n
  T sum(int a, int b) {
    assert(0 <= a && a <= b && b <= n);
    return cs[b] - cs[a];
  }
};

/**
 * @brief 2次元累積和
 * 構築 O(nm)
 * 更新不可
 * 部分和 O(1)
 * @tparam T
 */
template <class T = ll> class CumulativeSum2D {
  vector<vector<T>> cs;
  int n, m;

public:
  CumulativeSum2D(const vector<vector<T>> &v) {
    n = v.size();
    assert(n > 0);
    m = v[0].size();
    assert(m > 0);
    for (int i = 1; i < n; i++) {
      assert(int(v[i].size()) == m);
    }
    cs.resize(n + 1);
    cs[0] = vector<T>(m + 1, T(0));
    for (int i = 1; i <= n; i++) {
      cs[i].reserve(m + 1);
      cs[i].emplace_back(T(0));
      for (int j = 0; j < m; j++) {
        cs[i].emplace_back(cs[i].back() + v[i - 1][j]);
      }
    }
    for (int i = 2; i <= n; i++) {
      for (int j = 1; j <= m; j++)
        cs[i][j] += cs[i - 1][j];
    }
  }
  // [0, a) 0-n
  // [0, b) 0-m
  T sum(int a, int b) {
    assert(0 <= a && a <= n);
    assert(0 <= b && b <= m);
    return cs[a][b];
  }
  // [a1, a2) 0-a1-a2-n
  // [b1, b2) 0-b1-b2-m
  T sum(int a1, int b1, int a2, int b2) {
    assert(0 <= a1 && a1 <= a2 && a2 <= n);
    assert(0 <= b1 && b1 <= b2 && b2 <= m);
    return cs[a2][b2] - cs[a1][b2] - cs[a2][b1] + cs[a1][b1];
  }
};
Traceback (most recent call last):
  File "/opt/hostedtoolcache/Python/3.12.0/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.0/x64/lib/python3.12/site-packages/onlinejudge_verify/languages/cplusplus.py", line 187, in bundle
    bundler.update(path)
  File "/opt/hostedtoolcache/Python/3.12.0/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.0/x64/lib/python3.12/site-packages/onlinejudge_verify/languages/cplusplus_bundle.py", line 260, in _resolve
    raise BundleErrorAt(path, -1, "no such header")
onlinejudge_verify.languages.cplusplus_bundle.BundleErrorAt: template/small_template.hpp: line -1: no such header
Back to top page