├── .clang-format ├── .github └── workflows │ ├── document.yml │ ├── expander.yml │ ├── unittest.yml │ └── unittest_msvc.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── atcoder ├── all ├── convolution ├── convolution.hpp ├── dsu ├── dsu.hpp ├── fenwicktree ├── fenwicktree.hpp ├── internal_bit ├── internal_bit.hpp ├── internal_csr ├── internal_csr.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.md ├── convolution.md ├── dsu.md ├── fenwicktree.md ├── index.md ├── keywords.toml ├── lazysegtree.md ├── lib │ ├── LICENSE.md │ ├── ace.js │ ├── auto-render.min.js │ ├── fonts │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.woff2 │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.min.css │ ├── katex.min.js │ ├── mode-c_cpp.js │ ├── uikit-icons.min.js │ ├── uikit-rtl.min.css │ ├── uikit.min.css │ └── uikit.min.js ├── math.md ├── maxflow.md ├── mincostflow.md ├── modint.md ├── scc.md ├── segtree.md ├── string.md └── twosat.md ├── document_ja ├── appendix.md ├── convolution.md ├── dsu.md ├── fenwicktree.md ├── index.md ├── keywords.toml ├── lazysegtree.md ├── lib │ ├── LICENSE.md │ ├── ace.js │ ├── auto-render.min.js │ ├── fonts │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.woff2 │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.min.css │ ├── katex.min.js │ ├── mode-c_cpp.js │ ├── uikit-icons.min.js │ ├── uikit-rtl.min.css │ ├── uikit.min.css │ └── uikit.min.js ├── math.md ├── maxflow.md ├── mincostflow.md ├── modint.md ├── scc.md ├── segtree.md ├── string.md └── twosat.md ├── expander.py ├── test ├── benchmark │ ├── CMakeLists.txt │ └── convolution.cpp ├── example │ ├── convolution_int_practice.cpp │ ├── convolution_practice.cpp │ ├── dsu_practice.cpp │ ├── fenwick_practice.cpp │ ├── floor_sum_practice.cpp │ ├── lazyseg_practice1.cpp │ ├── lazyseg_practice2.cpp │ ├── maxflow_practice.cpp │ ├── mincostflow_practice.cpp │ ├── modint_usage.cpp │ ├── problems.toml │ ├── sa_practice.cpp │ ├── sa_usage.cpp │ ├── scc_practice.cpp │ ├── segtree_practice.cpp │ └── twosat_practice.cpp ├── expander │ ├── comment_out.cpp │ ├── include_all.cpp │ ├── include_dsu.cpp │ └── include_unusual_format.cpp ├── test_expander.py ├── unittest │ ├── CMakeLists.txt │ ├── basic_test.cpp │ ├── bit_test.cpp │ ├── convolution_test.cpp │ ├── dsu_test.cpp │ ├── fenwicktree_test.cpp │ ├── internal_math_test.cpp │ ├── lazysegtree_stress_test.cpp │ ├── lazysegtree_test.cpp │ ├── math_test.cpp │ ├── maxflow_test.cpp │ ├── mincostflow_test.cpp │ ├── modint_test.cpp │ ├── scc_test.cpp │ ├── segtree_test.cpp │ ├── string_test.cpp │ ├── twosat_test.cpp │ ├── type_traits_test.cpp │ └── utils │ │ └── math_test.cpp └── utils │ ├── math.hpp │ └── random.hpp └── tools ├── generate_document.py ├── generate_zip.py ├── requirements.txt ├── template_body.html └── template_head.html /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/document.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/.github/workflows/document.yml -------------------------------------------------------------------------------- /.github/workflows/expander.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/.github/workflows/expander.yml -------------------------------------------------------------------------------- /.github/workflows/unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/.github/workflows/unittest.yml -------------------------------------------------------------------------------- /.github/workflows/unittest_msvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/.github/workflows/unittest_msvc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/README.md -------------------------------------------------------------------------------- /atcoder/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/all -------------------------------------------------------------------------------- /atcoder/convolution: -------------------------------------------------------------------------------- 1 | #include "atcoder/convolution.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/convolution.hpp -------------------------------------------------------------------------------- /atcoder/dsu: -------------------------------------------------------------------------------- 1 | #include "atcoder/dsu.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/dsu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/dsu.hpp -------------------------------------------------------------------------------- /atcoder/fenwicktree: -------------------------------------------------------------------------------- 1 | #include "atcoder/fenwicktree.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/fenwicktree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/fenwicktree.hpp -------------------------------------------------------------------------------- /atcoder/internal_bit: -------------------------------------------------------------------------------- 1 | #include "atcoder/internal_bit.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/internal_bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/internal_bit.hpp -------------------------------------------------------------------------------- /atcoder/internal_csr: -------------------------------------------------------------------------------- 1 | #include "atcoder/internal_csr.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/internal_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/internal_csr.hpp -------------------------------------------------------------------------------- /atcoder/internal_math: -------------------------------------------------------------------------------- 1 | #include "atcoder/internal_math.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/internal_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/internal_math.hpp -------------------------------------------------------------------------------- /atcoder/internal_queue: -------------------------------------------------------------------------------- 1 | #include "atcoder/internal_queue.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/internal_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/internal_queue.hpp -------------------------------------------------------------------------------- /atcoder/internal_scc: -------------------------------------------------------------------------------- 1 | #include "atcoder/internal_scc.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/internal_scc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/internal_scc.hpp -------------------------------------------------------------------------------- /atcoder/internal_type_traits: -------------------------------------------------------------------------------- 1 | #include "atcoder/internal_type_traits.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/internal_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/internal_type_traits.hpp -------------------------------------------------------------------------------- /atcoder/lazysegtree: -------------------------------------------------------------------------------- 1 | #include "atcoder/lazysegtree.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/lazysegtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/lazysegtree.hpp -------------------------------------------------------------------------------- /atcoder/math: -------------------------------------------------------------------------------- 1 | #include "atcoder/math.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/math.hpp -------------------------------------------------------------------------------- /atcoder/maxflow: -------------------------------------------------------------------------------- 1 | #include "atcoder/maxflow.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/maxflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/maxflow.hpp -------------------------------------------------------------------------------- /atcoder/mincostflow: -------------------------------------------------------------------------------- 1 | #include "atcoder/mincostflow.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/mincostflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/mincostflow.hpp -------------------------------------------------------------------------------- /atcoder/modint: -------------------------------------------------------------------------------- 1 | #include "atcoder/modint.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/modint.hpp -------------------------------------------------------------------------------- /atcoder/scc: -------------------------------------------------------------------------------- 1 | #include "atcoder/scc.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/scc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/scc.hpp -------------------------------------------------------------------------------- /atcoder/segtree: -------------------------------------------------------------------------------- 1 | #include "atcoder/segtree.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/segtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/segtree.hpp -------------------------------------------------------------------------------- /atcoder/string: -------------------------------------------------------------------------------- 1 | #include "atcoder/string.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/string.hpp -------------------------------------------------------------------------------- /atcoder/twosat: -------------------------------------------------------------------------------- 1 | #include "atcoder/twosat.hpp" 2 | -------------------------------------------------------------------------------- /atcoder/twosat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/atcoder/twosat.hpp -------------------------------------------------------------------------------- /document_en/appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/appendix.md -------------------------------------------------------------------------------- /document_en/convolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/convolution.md -------------------------------------------------------------------------------- /document_en/dsu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/dsu.md -------------------------------------------------------------------------------- /document_en/fenwicktree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/fenwicktree.md -------------------------------------------------------------------------------- /document_en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/index.md -------------------------------------------------------------------------------- /document_en/keywords.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/keywords.toml -------------------------------------------------------------------------------- /document_en/lazysegtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lazysegtree.md -------------------------------------------------------------------------------- /document_en/lib/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/LICENSE.md -------------------------------------------------------------------------------- /document_en/lib/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/ace.js -------------------------------------------------------------------------------- /document_en/lib/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/auto-render.min.js -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /document_en/lib/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/katex.min.css -------------------------------------------------------------------------------- /document_en/lib/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/katex.min.js -------------------------------------------------------------------------------- /document_en/lib/mode-c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/mode-c_cpp.js -------------------------------------------------------------------------------- /document_en/lib/uikit-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/uikit-icons.min.js -------------------------------------------------------------------------------- /document_en/lib/uikit-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/uikit-rtl.min.css -------------------------------------------------------------------------------- /document_en/lib/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/uikit.min.css -------------------------------------------------------------------------------- /document_en/lib/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/lib/uikit.min.js -------------------------------------------------------------------------------- /document_en/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/math.md -------------------------------------------------------------------------------- /document_en/maxflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/maxflow.md -------------------------------------------------------------------------------- /document_en/mincostflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/mincostflow.md -------------------------------------------------------------------------------- /document_en/modint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/modint.md -------------------------------------------------------------------------------- /document_en/scc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/scc.md -------------------------------------------------------------------------------- /document_en/segtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/segtree.md -------------------------------------------------------------------------------- /document_en/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/string.md -------------------------------------------------------------------------------- /document_en/twosat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_en/twosat.md -------------------------------------------------------------------------------- /document_ja/appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/appendix.md -------------------------------------------------------------------------------- /document_ja/convolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/convolution.md -------------------------------------------------------------------------------- /document_ja/dsu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/dsu.md -------------------------------------------------------------------------------- /document_ja/fenwicktree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/fenwicktree.md -------------------------------------------------------------------------------- /document_ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/index.md -------------------------------------------------------------------------------- /document_ja/keywords.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/keywords.toml -------------------------------------------------------------------------------- /document_ja/lazysegtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lazysegtree.md -------------------------------------------------------------------------------- /document_ja/lib/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/LICENSE.md -------------------------------------------------------------------------------- /document_ja/lib/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/ace.js -------------------------------------------------------------------------------- /document_ja/lib/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/auto-render.min.js -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /document_ja/lib/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/katex.min.css -------------------------------------------------------------------------------- /document_ja/lib/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/katex.min.js -------------------------------------------------------------------------------- /document_ja/lib/mode-c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/mode-c_cpp.js -------------------------------------------------------------------------------- /document_ja/lib/uikit-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/uikit-icons.min.js -------------------------------------------------------------------------------- /document_ja/lib/uikit-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/uikit-rtl.min.css -------------------------------------------------------------------------------- /document_ja/lib/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/uikit.min.css -------------------------------------------------------------------------------- /document_ja/lib/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/lib/uikit.min.js -------------------------------------------------------------------------------- /document_ja/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/math.md -------------------------------------------------------------------------------- /document_ja/maxflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/maxflow.md -------------------------------------------------------------------------------- /document_ja/mincostflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/mincostflow.md -------------------------------------------------------------------------------- /document_ja/modint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/modint.md -------------------------------------------------------------------------------- /document_ja/scc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/scc.md -------------------------------------------------------------------------------- /document_ja/segtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/segtree.md -------------------------------------------------------------------------------- /document_ja/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/string.md -------------------------------------------------------------------------------- /document_ja/twosat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/document_ja/twosat.md -------------------------------------------------------------------------------- /expander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/expander.py -------------------------------------------------------------------------------- /test/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /test/benchmark/convolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/benchmark/convolution.cpp -------------------------------------------------------------------------------- /test/example/convolution_int_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/convolution_int_practice.cpp -------------------------------------------------------------------------------- /test/example/convolution_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/convolution_practice.cpp -------------------------------------------------------------------------------- /test/example/dsu_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/dsu_practice.cpp -------------------------------------------------------------------------------- /test/example/fenwick_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/fenwick_practice.cpp -------------------------------------------------------------------------------- /test/example/floor_sum_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/floor_sum_practice.cpp -------------------------------------------------------------------------------- /test/example/lazyseg_practice1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/lazyseg_practice1.cpp -------------------------------------------------------------------------------- /test/example/lazyseg_practice2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/lazyseg_practice2.cpp -------------------------------------------------------------------------------- /test/example/maxflow_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/maxflow_practice.cpp -------------------------------------------------------------------------------- /test/example/mincostflow_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/mincostflow_practice.cpp -------------------------------------------------------------------------------- /test/example/modint_usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/modint_usage.cpp -------------------------------------------------------------------------------- /test/example/problems.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/problems.toml -------------------------------------------------------------------------------- /test/example/sa_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/sa_practice.cpp -------------------------------------------------------------------------------- /test/example/sa_usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/sa_usage.cpp -------------------------------------------------------------------------------- /test/example/scc_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/scc_practice.cpp -------------------------------------------------------------------------------- /test/example/segtree_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/segtree_practice.cpp -------------------------------------------------------------------------------- /test/example/twosat_practice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/example/twosat_practice.cpp -------------------------------------------------------------------------------- /test/expander/comment_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/expander/comment_out.cpp -------------------------------------------------------------------------------- /test/expander/include_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/expander/include_all.cpp -------------------------------------------------------------------------------- /test/expander/include_dsu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/expander/include_dsu.cpp -------------------------------------------------------------------------------- /test/expander/include_unusual_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/expander/include_unusual_format.cpp -------------------------------------------------------------------------------- /test/test_expander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/test_expander.py -------------------------------------------------------------------------------- /test/unittest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/CMakeLists.txt -------------------------------------------------------------------------------- /test/unittest/basic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/basic_test.cpp -------------------------------------------------------------------------------- /test/unittest/bit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/bit_test.cpp -------------------------------------------------------------------------------- /test/unittest/convolution_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/convolution_test.cpp -------------------------------------------------------------------------------- /test/unittest/dsu_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/dsu_test.cpp -------------------------------------------------------------------------------- /test/unittest/fenwicktree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/fenwicktree_test.cpp -------------------------------------------------------------------------------- /test/unittest/internal_math_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/internal_math_test.cpp -------------------------------------------------------------------------------- /test/unittest/lazysegtree_stress_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/lazysegtree_stress_test.cpp -------------------------------------------------------------------------------- /test/unittest/lazysegtree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/lazysegtree_test.cpp -------------------------------------------------------------------------------- /test/unittest/math_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/math_test.cpp -------------------------------------------------------------------------------- /test/unittest/maxflow_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/maxflow_test.cpp -------------------------------------------------------------------------------- /test/unittest/mincostflow_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/mincostflow_test.cpp -------------------------------------------------------------------------------- /test/unittest/modint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/modint_test.cpp -------------------------------------------------------------------------------- /test/unittest/scc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/scc_test.cpp -------------------------------------------------------------------------------- /test/unittest/segtree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/segtree_test.cpp -------------------------------------------------------------------------------- /test/unittest/string_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/string_test.cpp -------------------------------------------------------------------------------- /test/unittest/twosat_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/twosat_test.cpp -------------------------------------------------------------------------------- /test/unittest/type_traits_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/type_traits_test.cpp -------------------------------------------------------------------------------- /test/unittest/utils/math_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/unittest/utils/math_test.cpp -------------------------------------------------------------------------------- /test/utils/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/utils/math.hpp -------------------------------------------------------------------------------- /test/utils/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/test/utils/random.hpp -------------------------------------------------------------------------------- /tools/generate_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/tools/generate_document.py -------------------------------------------------------------------------------- /tools/generate_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/tools/generate_zip.py -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/tools/requirements.txt -------------------------------------------------------------------------------- /tools/template_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/tools/template_body.html -------------------------------------------------------------------------------- /tools/template_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcoder/ac-library/HEAD/tools/template_head.html --------------------------------------------------------------------------------