ac-library
ac-library copied to clipboard
AtCoder Library
I'm using `clang++` with command like ```sh clang++ -o "%
Doc of `max_right`/`max_left` in `segtree`/`lazy_segtree` says as below. https://github.com/atcoder/ac-library/blob/master/document_en/segtree.md?plain=1#L135 https://github.com/atcoder/ac-library/blob/master/document_en/lazysegtree.md?plain=1#L145 But, as far as I read source code, `max_right`/`max_left` doesn't need Constraint `f(e) = true`.(Maybe I'm missing something) Why does...
ref: #4
Add KMP
[](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....
Add assert for length of input $|a| + |b|$ in `convolution_ll` and `convolution_fft`. https://github.com/atcoder/ac-library/blob/master/document_en/convolution.md?plain=1#L37 The following code should fail on assert ```c++ #include #include #include using namespace std; using namespace...
Only this section of the document was missing a description of the constraints. The assert is present in the code. https://github.com/atcoder/ac-library/blob/master/atcoder/maxflow.hpp#L67-L68
Added a note that the ACL does not support 32bit MSVC projects. I had submitted a PR a long time ago, but it was closed because I was too busy....