├── README.md ├── atcoder ├── LICENSE ├── all ├── convolution ├── convolution.hpp ├── dsu ├── dsu.hpp ├── fenwicktree ├── fenwicktree.hpp ├── internal_bit ├── internal_bit.hpp ├── internal_math ├── internal_math.hpp ├── internal_queue ├── internal_queue.hpp ├── internal_scc ├── internal_scc.hpp ├── internal_type_traits ├── internal_type_traits.hpp ├── lazysegtree ├── lazysegtree.hpp ├── math ├── math.hpp ├── maxflow ├── maxflow.hpp ├── mincostflow ├── mincostflow.hpp ├── modint ├── modint.hpp ├── scc ├── scc.hpp ├── segtree ├── segtree.hpp ├── string ├── string.hpp ├── twosat └── twosat.hpp ├── document_en ├── appendix.html ├── convolution.html ├── dsu.html ├── fenwicktree.html ├── index.html ├── lazysegtree.html ├── math.html ├── maxflow.html ├── mincostflow.html ├── modint.html ├── scc.html ├── segtree.html ├── string.html └── twosat.html ├── document_ja ├── appendix.html ├── convolution.html ├── dsu.html ├── fenwicktree.html ├── index.html ├── lazysegtree.html ├── math.html ├── maxflow.html ├── mincostflow.html ├── modint.html ├── scc.html ├── segtree.html ├── string.html └── twosat.html ├── expander.py └── marged_ACL.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/README.md -------------------------------------------------------------------------------- /atcoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/LICENSE -------------------------------------------------------------------------------- /atcoder/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/all -------------------------------------------------------------------------------- /atcoder/convolution: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/convolution.hpp -------------------------------------------------------------------------------- /atcoder/dsu: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/dsu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/dsu.hpp -------------------------------------------------------------------------------- /atcoder/fenwicktree: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/fenwicktree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/fenwicktree.hpp -------------------------------------------------------------------------------- /atcoder/internal_bit: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/internal_bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/internal_bit.hpp -------------------------------------------------------------------------------- /atcoder/internal_math: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/internal_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/internal_math.hpp -------------------------------------------------------------------------------- /atcoder/internal_queue: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/internal_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/internal_queue.hpp -------------------------------------------------------------------------------- /atcoder/internal_scc: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/internal_scc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/internal_scc.hpp -------------------------------------------------------------------------------- /atcoder/internal_type_traits: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/internal_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/internal_type_traits.hpp -------------------------------------------------------------------------------- /atcoder/lazysegtree: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/lazysegtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/lazysegtree.hpp -------------------------------------------------------------------------------- /atcoder/math: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/math.hpp -------------------------------------------------------------------------------- /atcoder/maxflow: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/maxflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/maxflow.hpp -------------------------------------------------------------------------------- /atcoder/mincostflow: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/mincostflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/mincostflow.hpp -------------------------------------------------------------------------------- /atcoder/modint: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/modint.hpp -------------------------------------------------------------------------------- /atcoder/scc: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/scc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/scc.hpp -------------------------------------------------------------------------------- /atcoder/segtree: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/segtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/segtree.hpp -------------------------------------------------------------------------------- /atcoder/string: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/string.hpp -------------------------------------------------------------------------------- /atcoder/twosat: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /atcoder/twosat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/atcoder/twosat.hpp -------------------------------------------------------------------------------- /document_en/appendix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/appendix.html -------------------------------------------------------------------------------- /document_en/convolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/convolution.html -------------------------------------------------------------------------------- /document_en/dsu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/dsu.html -------------------------------------------------------------------------------- /document_en/fenwicktree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/fenwicktree.html -------------------------------------------------------------------------------- /document_en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/index.html -------------------------------------------------------------------------------- /document_en/lazysegtree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/lazysegtree.html -------------------------------------------------------------------------------- /document_en/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/math.html -------------------------------------------------------------------------------- /document_en/maxflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/maxflow.html -------------------------------------------------------------------------------- /document_en/mincostflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/mincostflow.html -------------------------------------------------------------------------------- /document_en/modint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/modint.html -------------------------------------------------------------------------------- /document_en/scc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/scc.html -------------------------------------------------------------------------------- /document_en/segtree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/segtree.html -------------------------------------------------------------------------------- /document_en/string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/string.html -------------------------------------------------------------------------------- /document_en/twosat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_en/twosat.html -------------------------------------------------------------------------------- /document_ja/appendix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/appendix.html -------------------------------------------------------------------------------- /document_ja/convolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/convolution.html -------------------------------------------------------------------------------- /document_ja/dsu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/dsu.html -------------------------------------------------------------------------------- /document_ja/fenwicktree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/fenwicktree.html -------------------------------------------------------------------------------- /document_ja/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/index.html -------------------------------------------------------------------------------- /document_ja/lazysegtree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/lazysegtree.html -------------------------------------------------------------------------------- /document_ja/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/math.html -------------------------------------------------------------------------------- /document_ja/maxflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/maxflow.html -------------------------------------------------------------------------------- /document_ja/mincostflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/mincostflow.html -------------------------------------------------------------------------------- /document_ja/modint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/modint.html -------------------------------------------------------------------------------- /document_ja/scc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/scc.html -------------------------------------------------------------------------------- /document_ja/segtree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/segtree.html -------------------------------------------------------------------------------- /document_ja/string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/string.html -------------------------------------------------------------------------------- /document_ja/twosat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/document_ja/twosat.html -------------------------------------------------------------------------------- /expander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/expander.py -------------------------------------------------------------------------------- /marged_ACL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TumoiYorozu/single-file-ac-library/HEAD/marged_ACL.cpp --------------------------------------------------------------------------------