C++ アルゴリズムとデータ構造のライブラリ
#define PROBLEM "https://judge.yosupo.jp/problem/bitwise_and_convolution"
#include "template/template.hpp"
#include "library/number/mod/montgomery_mod_int.hpp"
#include "library/polynomial/fft/convolution_bitwise_and.hpp"
/**
* @brief Bitwise畳み込みANDのテスト
*/
void solve() {
int N;
cin >> N;
using mint = modint998244353;
vector<mint> a(1 << N), b(1 << N);
cin >> a;
cin >> b;
auto c = convolution_bitwise_and(a, b);
print(c);
}Traceback (most recent call last):
File "/home/runner/.local/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 "/home/runner/.local/lib/python3.12/site-packages/onlinejudge_verify/languages/cplusplus.py", line 187, in bundle
bundler.update(path)
File "/home/runner/.local/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 "/home/runner/.local/lib/python3.12/site-packages/onlinejudge_verify/languages/cplusplus_bundle.py", line 400, in update
raise BundleErrorAt(path, i + 1, "unable to process #include in #if / #ifdef / #ifndef other than include guards")
onlinejudge_verify.languages.cplusplus_bundle.BundleErrorAt: template/template.hpp: line 7: unable to process #include in #if / #ifdef / #ifndef other than include guards