├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── verify.yml ├── .verify-helper ├── config.toml ├── docs │ ├── _config.yml │ ├── index.md │ └── static │ │ ├── nyaan.png │ │ └── suffix_link.png └── timestamps.remote.json ├── .vscode ├── cpp.code-snippets └── settings.json ├── LICENSE ├── README.md ├── atcoder ├── convolution.hpp ├── dsu.hpp ├── fenwicktree.hpp ├── internal_bit.hpp ├── internal_csr.hpp ├── internal_math.hpp ├── internal_queue.hpp ├── internal_scc.hpp ├── internal_type_traits.hpp ├── lazysegtree.hpp ├── math.hpp ├── maxflow.hpp ├── mincostflow.hpp ├── modint.hpp ├── scc.hpp ├── segtree.hpp ├── string.hpp └── twosat.hpp ├── bundle.py ├── compress.py ├── data-structure-2d ├── 2d-binary-indexed-tree.hpp ├── 2d-cumulative-sum.hpp ├── 2d-segment-tree.hpp ├── abstract-range-tree.hpp ├── dynamic-binary-indexed-tree-2d.hpp ├── fenwick-tree-on-range-tree.hpp ├── fenwick-tree-on-wavelet-matrix.hpp ├── rectangle-add-rectangle-sum.hpp ├── rectangle-sum.hpp ├── segment-tree-on-range-tree.hpp ├── segment-tree-on-wavelet-matrix.hpp └── wavelet-matrix.hpp ├── data-structure ├── binary-indexed-tree.hpp ├── binary-trie.hpp ├── divide-interval.hpp ├── dynamic-binary-indexed-tree.hpp ├── dynamic-bitset.hpp ├── dynamic-union-find.hpp ├── erasable-priority-queue.hpp ├── hash-map-variable-length.hpp ├── line-container-2d.hpp ├── line-container.hpp ├── parallel-union-find.hpp ├── persistent-array.hpp ├── persistent-queue.hpp ├── persistent-union-find.hpp ├── radix-heap.hpp ├── range-sum-range-add-bit.hpp ├── range-union-find.hpp ├── rollback-union-find.hpp ├── segment-set.hpp ├── skew-heap.hpp ├── slide-window-aggregation-deque.hpp ├── slide-window-aggregation.hpp ├── sliding-window-minimum.hpp ├── slope-trick-weighted.hpp ├── slope-trick.hpp ├── sparse-table.hpp ├── square-root-decomposition.hpp ├── union-find-enumerate.hpp ├── union-find-with-potential.hpp ├── union-find.hpp ├── van-emde-boas-tree.hpp └── w-ary-tree.hpp ├── docs ├── data-structure-2d │ ├── 2d-segment-tree.md │ └── wavelet-matrix.md ├── data-structure │ ├── binary-indexed-tree.md │ ├── binary-trie.md │ ├── dynamic-binary-indexed-tree.md │ ├── dynamic-union-find.md │ ├── hash-map.md │ ├── radix-heap.md │ ├── rollback-union-find.md │ ├── skew-heap.md │ ├── slide-window-aggregation.md │ ├── sqrt-dec.md │ └── union-find.md ├── dp │ ├── branch-and-bound.md │ ├── knapsack01.md │ └── maximal-rectangle.md ├── flow │ └── flow-on-bipartite-graph.md ├── fps │ ├── differential-equation.md │ ├── find-p-recursive.md │ ├── formal-power-series.md │ ├── fps-circular.md │ ├── fps-composition-old.md │ ├── fps-sqrt.md │ ├── fps-taylor-shift.md │ ├── kitamasa.md │ ├── nth-term.md │ ├── ntt-friendly-fps.md │ ├── polynomial-gcd.md │ └── sum-of-exponential-times-poly.md ├── graph │ ├── chromatic-number.md │ ├── functional-graph.md │ ├── graph-template.md │ ├── graph-utility.md │ └── static-graph.md ├── hashmap │ ├── hashmap.md │ ├── hashmap_all.md │ └── hashset.md ├── internal │ └── internal-hash.md ├── lct │ └── link-cut-tree.md ├── marathon │ ├── sa-manager.md │ └── simulated-annealing.md ├── math │ ├── kth-root-integral.md │ ├── nimber.md │ ├── semiring.md │ └── two-sat.md ├── matrix │ └── polynomial-matrix-determinant.md ├── misc │ ├── doubling.md │ └── mo.md ├── modulo │ ├── arbitrary-mod-binomial.md │ ├── factorial.md │ ├── mod-kth-root.md │ ├── mod-sqrt.md │ └── tetration.md ├── multiplicative-function │ ├── divisor-multiple-transform.md │ ├── mf-famous-series.md │ ├── prime-counting-o2d3.md │ ├── prime-counting.md │ └── sum-of-multiplicative-function.md ├── ntt │ └── multivariate-multiplication.md ├── prime │ └── fast-factorize.md ├── rbst │ └── lazy-reversible-rbst.md ├── segment-tree │ ├── lazy-segment-tree-utility.md │ ├── persistent-segtree.md │ ├── segment-tree-beats-abstract.md │ └── segment-tree-beats.md ├── set-function │ └── subset-convolution.md ├── shortest-path │ ├── dijkstra-fast.md │ ├── dijkstra-radix-heap.md │ ├── dijkstra-skew-heap.md │ └── dijkstra.md ├── string │ ├── rolling-hash-2d.md │ ├── rolling-hash.md │ └── suffix-automaton.md └── tree │ ├── cartesian-tree.md │ ├── centroid-decomposition.md │ ├── dsu-on-tree.md │ ├── euler-tour.md │ ├── frequency-table-of-tree-distance.md │ ├── heavy-light-decomposition.md │ ├── rerooting.md │ └── tree-query.md ├── dp ├── branch-and-bound.hpp ├── concave-min-plus-convolution.hpp ├── golden-section-search.hpp ├── inversion-counting.hpp ├── knapsack01.hpp ├── longest-increasing-sequence.hpp ├── maximal-rectangle.hpp ├── monge-d-edge-shortest-path-enumerate.hpp ├── monge-d-edge-shortest-path.hpp ├── monge-shortest-path.hpp └── monotone-minima.hpp ├── flow └── flow-on-bipartite-graph.hpp ├── fps ├── arbitrary-fps.hpp ├── berlekamp-massey.hpp ├── composite-exp.hpp ├── differential-equation.hpp ├── dual-fps.hpp ├── fast-interpolate.hpp ├── fast-multieval.hpp ├── fft2d.hpp ├── find-p-recursive.hpp ├── formal-power-series.hpp ├── fps-circular.hpp ├── fps-composition-fast-old.hpp ├── fps-composition-old.hpp ├── fps-composition.hpp ├── fps-compositional-inverse.hpp ├── fps-famous-series.hpp ├── fps-fraction.hpp ├── fps-sqrt.hpp ├── fps-utility.hpp ├── fualhuber.hpp ├── inversion-formula.hpp ├── kitamasa.hpp ├── lagrange-interpolation-point.hpp ├── middle-product.hpp ├── mod-pow.hpp ├── multipoint-evaluation.hpp ├── multivariate-fps.hpp ├── newton-method.hpp ├── nth-term.hpp ├── ntt-friendly-fps.hpp ├── online-fps.hpp ├── partial-fraction-decomposition.hpp ├── pascal-matrix.hpp ├── polynomial-gcd.hpp ├── polynomial-interpolation.hpp ├── pow-enumerate.hpp ├── root-finding.hpp ├── sample-point-shift.hpp ├── sparse-fps.hpp ├── stirling-matrix.hpp ├── sum-of-exponential-times-poly.hpp └── taylor-shift.hpp ├── game ├── impartial-game.hpp ├── partisan-game.hpp └── surreal-number.hpp ├── geometry ├── circle.hpp ├── geometry-base.hpp ├── integer-geometry.hpp ├── line.hpp ├── polygon.hpp └── segment.hpp ├── graph ├── biconnected-components.hpp ├── chromatic-number.hpp ├── cycle-detection.hpp ├── dimension-expanded-graph.hpp ├── functional-graph.hpp ├── graph-template.hpp ├── graph-utility.hpp ├── kruskal.hpp ├── lowlink.hpp ├── max-independent-set.hpp ├── minimum-cost-arborescence.hpp ├── namori.hpp ├── offline-dynamic-connectivity.hpp ├── static-graph.hpp ├── strongly-connected-components.hpp ├── topological-sort.hpp └── two-edge-connected-components.hpp ├── hashmap ├── hashmap-base.hpp ├── hashmap-unerasable.hpp ├── hashmap.hpp └── hashset.hpp ├── internal ├── internal-hash-function.hpp ├── internal-hash.hpp ├── internal-math.hpp ├── internal-seed.hpp └── internal-type-traits.hpp ├── lct ├── lazy-reversible-bbst-base.hpp ├── link-cut-base.hpp ├── link-cut-tree-lazy.hpp ├── link-cut-tree-subtree-add.hpp ├── link-cut-tree-subtree.hpp ├── link-cut-tree.hpp ├── reversible-bbst-base.hpp ├── splay-base.hpp ├── splay-lazy-reversible.hpp └── splay-reversible.hpp ├── marathon ├── log_table.hpp ├── multi-armed-bandit.hpp ├── sa-manager.hpp ├── simulated-annealing.hpp └── top-k.hpp ├── math-fast ├── binary-search.hpp ├── gcd.hpp ├── inv-o1.hpp ├── inv.hpp ├── mat-prod-strassen.hpp ├── radix-sort.hpp ├── subset-convolution.hpp └── vectorize-modint.hpp ├── math ├── affine-transformation.hpp ├── bigint-all.hpp ├── bigint-binary.hpp ├── bigint-garner.hpp ├── bigint-gcd.hpp ├── bigint-rational.hpp ├── bigint-to-hex.hpp ├── bigint.hpp ├── constexpr-primitive-root.hpp ├── elementary-function.hpp ├── enumerate-convex.hpp ├── enumerate-quotient.hpp ├── f2.hpp ├── float-binomial.hpp ├── floor-sum.hpp ├── garner.hpp ├── gaussian-integer.hpp ├── gray-code.hpp ├── grundy-number.hpp ├── inv-mod.hpp ├── isqrt.hpp ├── kth-root-integral.hpp ├── nimber-to-field.hpp ├── nimber.hpp ├── primitive-root-ll.hpp ├── rational-binomial.hpp ├── rational-fps.hpp ├── rational.hpp ├── sat-solver.hpp ├── semiring-linear-recursive.hpp ├── semiring.hpp ├── stern-brocot-tree-binary-search.hpp ├── stern-brocot-tree.hpp ├── sweep-restore.hpp ├── sweep.hpp ├── two-sat.hpp └── two-square.hpp ├── matrix ├── black-box-linear-algebra.hpp ├── characteristric-polynomial.hpp ├── determinant-arbitrary-mod.hpp ├── f2-matrix.hpp ├── gauss-elimination.hpp ├── hafnian.hpp ├── inverse-matrix.hpp ├── linear-equation-hashmap.hpp ├── linear-equation.hpp ├── matrix-fast.hpp ├── matrix-tree.hpp ├── matrix.hpp ├── polynomial-matrix-determinant.hpp └── polynomial-matrix-prefix-prod.hpp ├── misc ├── all.hpp ├── base64.hpp ├── bitset-find-prev.hpp ├── compress.hpp ├── doubling.hpp ├── fastio.hpp ├── int_div.hpp ├── interval-union.hpp ├── mo-fast.hpp ├── mo.hpp ├── rng.hpp ├── simd.hpp ├── timer.hpp └── vector-pool.hpp ├── modint ├── adjunction-modint.hpp ├── arbitrary-modint.hpp ├── arbitrary-montgomery-modint.hpp ├── barrett-reduction.hpp ├── modint-2-61m1.hpp ├── modint-cpp11.hpp ├── modint.hpp ├── montgomery-modint.hpp ├── simd-montgomery.hpp └── vectorize-modint.hpp ├── modulo ├── arbitrary-mod-binomial-large.hpp ├── arbitrary-mod-binomial.hpp ├── binomial-table.hpp ├── binomial.hpp ├── factorial.hpp ├── fastpow.hpp ├── gauss-elimination-fast.hpp ├── mod-kth-root.hpp ├── mod-log.hpp ├── mod-sqrt.hpp ├── multipoint-binomial-sum.hpp ├── quadratic-equation.hpp ├── strassen.hpp └── tetration.hpp ├── multiplicative-function ├── count-square-free.hpp ├── divisor-multiple-transform.hpp ├── enamurate-multiplicative-function.hpp ├── enumerate-sum-of-multiplicative-function.hpp ├── gcd-convolution.hpp ├── mf-famous-series.hpp ├── prime-counting-faster.hpp ├── prime-counting-o2d3.hpp ├── prime-counting.hpp ├── sum-of-multiplicative-function.hpp └── sum-of-totient.hpp ├── ntt ├── arbitrary-ntt-mod18446744069414584321.hpp ├── arbitrary-ntt.hpp ├── chirp-z.hpp ├── complex-fft.hpp ├── convolution-large.hpp ├── cooley-tukey-ntt.hpp ├── karatsuba.hpp ├── multidimensional-ntt.hpp ├── multiplicative-convolution-mod-p.hpp ├── multivariate-circular-convolution.hpp ├── multivariate-multiplication.hpp ├── ntt-64bit.hpp ├── ntt-avx2.hpp ├── ntt-cpp11.hpp ├── ntt-sse42.hpp ├── ntt.hpp ├── rader-ntt.hpp ├── relaxed-convolution.hpp └── schoenhage-strassen-radix2.hpp ├── orderedmap ├── orderedmap-base.hpp └── orderedmap.hpp ├── prime ├── factor-enumerate.hpp ├── fast-factorize.hpp ├── miller-rabin.hpp ├── osak.hpp ├── prime-enumerate.hpp └── prime-sieve.hpp ├── random_graph ├── gen.hpp ├── graph.hpp └── random.hpp ├── rbst ├── lazy-reversible-rbst.hpp ├── rbst-base.hpp └── treap.hpp ├── segment-tree ├── dynamic-li-chao-tree.hpp ├── dynamic-segment-tree.hpp ├── lazy-segment-tree-utility.hpp ├── lazy-segment-tree.hpp ├── li-chao-tree-abstruct.hpp ├── li-chao-tree.hpp ├── persistent-segment-tree.hpp ├── range-weighted-add-range-sum-lazyseg.hpp ├── rbst-segment-tree.hpp ├── rbst-sequence.hpp ├── segment-tree-beats-abstract.hpp ├── segment-tree-beats.hpp ├── segment-tree-max-of-interval.hpp └── segment-tree.hpp ├── set-function ├── and-convolution.hpp ├── enumerate-set.hpp ├── exp-of-set-power-series.hpp ├── or-convolution.hpp ├── polynomial-composite-set-power-series.hpp ├── subset-convolution.hpp ├── walsh-hadamard-transform.hpp ├── xor-convolution.hpp └── zeta-mobius-transform.hpp ├── shortest-path ├── bellman-ford.hpp ├── bfs-restore.hpp ├── bfs01.hpp ├── dijkstra-abstruct.hpp ├── dijkstra-fast.hpp ├── dijkstra-radix-heap.hpp ├── dijkstra-skew-heap.hpp ├── dijkstra-with-restore.hpp ├── dijkstra.hpp ├── dual-of-shortest-path.hpp ├── restore-shortest-path.hpp └── warshall-floyd.hpp ├── string ├── aho-corasick.hpp ├── manacher.hpp ├── number-of-subsequences.hpp ├── rolling-hash-2d.hpp ├── rolling-hash-on-segment-tree.hpp ├── rolling-hash.hpp ├── run-enumerate.hpp ├── run-length-encoding.hpp ├── string-search.hpp ├── suffix-array.hpp ├── suffix-automaton.hpp ├── trie.hpp ├── wildcard-pattern-matching.hpp └── z-algorithm.hpp ├── template ├── bitop.hpp ├── debug.hpp ├── inout.hpp ├── macro.hpp ├── template.hpp └── util.hpp ├── tree ├── auxiliary-tree.hpp ├── block-cut-tree.hpp ├── cartesian-tree.hpp ├── centroid-decomposition.hpp ├── centroid.hpp ├── convert-tree.hpp ├── dsu-on-tree.hpp ├── dynamic-diameter.hpp ├── dynamic-rerooting.hpp ├── euler-tour.hpp ├── frequency-table-of-tree-distance.hpp ├── heavy-light-decomposition.hpp ├── inclusion-tree.hpp ├── process-of-merging-tree.hpp ├── pruefer-code.hpp ├── rerooting.hpp ├── rooted-tree-hash.hpp ├── static-top-tree-edge-based.hpp ├── static-top-tree-vertex-based.hpp ├── tree-hash.hpp └── tree-query.hpp ├── unused ├── develop │ ├── add-range-edge.hpp │ ├── black-algorithm.hpp │ ├── dominator-tree.hpp │ ├── dynamic-wavelet-matrix.hpp │ ├── dynamic_bitset_matrix.hpp │ ├── fft.cpp │ ├── fft_ver1.hpp │ ├── fft_ver2.cpp │ ├── fft_verify.cpp │ ├── hld-base.hpp │ ├── ntt_kakikake │ ├── run-enumerate.hpp │ └── schoenhage_strassen_radix3.hpp ├── old │ ├── fast-inv-gcd.test.cpp │ ├── hashmap-chain.hpp │ ├── hashmap-open-address.hpp │ ├── randomized-binary-search-tree.hpp │ ├── range-add-range-max-lazyseg.hpp │ ├── range-add-range-min-lazyseg.hpp │ ├── range-add-range-sum-lazyseg.hpp │ ├── range-update-range-max-lazyseg.hpp │ ├── range-update-range-min-lazyseg.hpp │ ├── range-update-range-sum-lazyseg.hpp │ ├── rbst-ordered-map.hpp │ ├── rbst-ordered-map.md │ ├── rbst-ordered-set.hpp │ ├── rbst-ordered-set.md │ └── trial │ │ ├── fast-gcd.hpp │ │ ├── fast-gcd.md │ │ ├── fast-inv.hpp │ │ └── fast-inv.md ├── old_snippet └── python │ ├── fastio.py │ ├── ntt-numba.py │ ├── ntt.py │ ├── segtree-immutable.py │ ├── segtree-mutable.py │ ├── template.py │ └── tuning_optuna.py └── verify ├── verify-aoj-alds └── verify-aoj-alds-14-c.test.cpp ├── verify-aoj-cgl ├── aoj-cgl-1-a.test.cpp ├── aoj-cgl-1-b.test.cpp ├── aoj-cgl-1-c.test.cpp ├── aoj-cgl-2-a.test.cpp ├── aoj-cgl-2-b.test.cpp ├── aoj-cgl-2-c.test.cpp ├── aoj-cgl-2-d.test.cpp ├── aoj-cgl-3-a.test.cpp ├── aoj-cgl-3-b.test.cpp ├── aoj-cgl-3-c.test.cpp ├── aoj-cgl-4-a.test.cpp ├── aoj-cgl-4-b.test.cpp └── aoj-cgl-4-c.test.cpp ├── verify-aoj-dpl ├── aoj-dpl-1-b.test.cpp ├── aoj-dpl-1-f-bandb.test.cpp ├── aoj-dpl-1-f.test.cpp ├── aoj-dpl-1-h-bandb.test.cpp ├── aoj-dpl-1-h.test.cpp └── aoj-dpl-3-c.test.cpp ├── verify-aoj-dsl ├── aoj-dsl-1-a-dynamic.test.cpp ├── aoj-dsl-1-a.test.cpp ├── aoj-dsl-1-b.test.cpp ├── aoj-dsl-2-a-segtree.test.cpp ├── aoj-dsl-2-b-bit.test.cpp ├── aoj-dsl-2-b-segtree.test.cpp ├── aoj-dsl-2-d.test.cpp ├── aoj-dsl-2-e-imos.test.cpp ├── aoj-dsl-2-e.test.cpp ├── aoj-dsl-2-f-max.test.cpp ├── aoj-dsl-2-f.test.cpp ├── aoj-dsl-2-g-bit.test.cpp ├── aoj-dsl-2-g.test.cpp ├── aoj-dsl-2-h-max.test.cpp ├── aoj-dsl-2-h.test.cpp ├── aoj-dsl-2-i.test.cpp ├── aoj-dsl-3-d-cartesiantree.test.cpp ├── aoj-dsl-3-d.test.cpp ├── aoj-dsl-5-b-2dseg.test.cpp ├── aoj-dsl-5-b-bit2d.test.cpp └── aoj-dsl-5-b.test.cpp ├── verify-aoj-grl ├── aoj-grl-1-a-fast-dijkstra.test.cpp ├── aoj-grl-1-a-radix-heap.test.cpp ├── aoj-grl-1-a.test.cpp ├── aoj-grl-1-b.test.cpp ├── aoj-grl-1-c.test.cpp ├── aoj-grl-2-a.test.cpp ├── aoj-grl-3-a.test.cpp ├── aoj-grl-3-b.test.cpp ├── aoj-grl-3-c.test.cpp ├── aoj-grl-4-a.test.cpp ├── aoj-grl-4-b.test.cpp ├── aoj-grl-5-a-dynamic-rerooting.test.cpp ├── aoj-grl-5-a-rerooting.test.cpp ├── aoj-grl-5-a.test.cpp ├── aoj-grl-5-b.test.cpp ├── aoj-grl-5-c.test.cpp ├── aoj-grl-5-d.test.cpp └── aoj-grl-5-e.test.cpp ├── verify-aoj-itp ├── aoj-itp2-11-b.test.cpp └── aoj-itp2-11-c.test.cpp ├── verify-aoj-ntl ├── aoj-ntl-1-a.test.cpp ├── aoj-ntl-1-b.test.cpp ├── aoj-ntl-1-c.test.cpp ├── aoj-ntl-1-d.test.cpp ├── aoj-ntl-1-e.test.cpp ├── aoj-ntl-2-a.test.cpp ├── aoj-ntl-2-b.test.cpp ├── aoj-ntl-2-c.test.cpp ├── aoj-ntl-2-d.test.cpp ├── aoj-ntl-2-e.test.cpp └── aoj-ntl-2-f.test.cpp ├── verify-aoj-other ├── aoj-0304.test.cpp ├── aoj-0412.test.cpp ├── aoj-1068.test.cpp ├── aoj-1130-DG-bfs.test.cpp ├── aoj-1377.test.cpp ├── aoj-1613.test.cpp ├── aoj-2171-bigrational.test.cpp ├── aoj-2171.test.cpp ├── aoj-2821.test.cpp ├── aoj-2891-2.test.cpp ├── aoj-2891.test.cpp ├── aoj-2945-01bfs.test.cpp ├── aoj-2945-DG-01bfs.test.cpp ├── aoj-2995-hashmap.test.cpp ├── aoj-2995.test.cpp ├── aoj-3022.test.cpp ├── aoj-3086.test.cpp ├── aoj-3277.test.cpp └── aoj-3506.test.cpp ├── verify-unit-test ├── arbitrary-modint.test.cpp ├── arbitrary-ntt-mod18446744069414584321.test.cpp ├── barrett-reduction.test.cpp ├── bigint-gcd.test.cpp ├── bigint.test.cpp ├── bigint2.test.cpp ├── bigint3.test.cpp ├── bigrational.test.cpp ├── binomial-table.test.cpp ├── bitset-find-prev.test.cpp ├── complex-fft.test.cpp ├── composite-exp.test.cpp ├── composition.test.cpp ├── debug.test.cpp ├── dijkstra.test.cpp ├── dual-fps.test.cpp ├── dynamic-diameter.test.cpp ├── enumerate-convex.test.cpp ├── enumerate-quotient.test.cpp ├── erasable-priority-queue.test.cpp ├── factorize.test.cpp ├── fast-bs.test.cpp ├── fast-inv-o1.test.cpp ├── fast-inv.test.cpp ├── fft2d.test.cpp ├── fps-sparse.test.cpp ├── fps.test.cpp ├── garner-bigint.test.cpp ├── garner.test.cpp ├── gauss-elimination.test.cpp ├── geometry.test.cpp ├── hashmap.test.cpp ├── hashset.test.cpp ├── inner-hash.test.cpp ├── int-div.test.cpp ├── internal-math.test.cpp ├── internal-type-traits.test.cpp ├── interval-union.test.cpp ├── inverse-matrix.test.cpp ├── karatsuba.test.cpp ├── lazyseg-bsearch.test.cpp ├── lazyseg-setval-2.test.cpp ├── lazyseg-setval.test.cpp ├── li-chao-tree-abstruct.test.cpp ├── manacher.test.cpp ├── math-fast-2.test.cpp ├── math-fast.test.cpp ├── math.test.cpp ├── mf.test.cpp ├── modint-2-61m1.test.cpp ├── modint.test.cpp ├── multieval.test.cpp ├── multiplicative-function.test.cpp ├── multipoint-binomial-sum.test.cpp ├── nimber-to-field.test.cpp ├── nimber.test.cpp ├── ntt-64bit.test.cpp ├── orderedmap.test.cpp ├── osak.test.cpp ├── p-recursive.test.cpp ├── parallel-union-find.test.cpp ├── partial-fraction-decomposition.test.cpp ├── polynomial-matrix-prod.test.cpp ├── primality-test.test.cpp ├── primitive-root.test.cpp ├── radix-heap.test.cpp ├── radix-sort.test.cpp ├── rational-number.test.cpp ├── rbst-segment-tree.test.cpp ├── rbst-sequence.test.cpp ├── relaxed-convolution.test.cpp ├── rerooting.test.cpp ├── run-length-encoding.test.cpp ├── sa-manager.test.cpp ├── segment-set.test.cpp ├── segment-tree-beats.test.cpp ├── semiring.test.cpp ├── set-function.test.cpp ├── simulated-annealing.test.cpp ├── sparse-table.test.cpp ├── stirling-matrix.test.cpp ├── strassen.test.cpp ├── string-search.test.cpp ├── sum-of-mf.test.cpp ├── template.test.cpp ├── tree-path.test.cpp └── wavelet-matrix.test.cpp ├── verify-yosupo-ds ├── yosupo-associative-array-dynamic-segtree.test.cpp ├── yosupo-associative-array-rbstseg.test.cpp ├── yosupo-associative-array-unerasable-hashmap.test.cpp ├── yosupo-binary-trie.test.cpp ├── yosupo-deque-operate-all-composite.test.cpp ├── yosupo-dynamic-li-chao-tree.test.cpp ├── yosupo-dynamic-sequence-range-affine-range-sum-splay.test.cpp ├── yosupo-dynamic-sequence-range-affine-range-sum-treap.test.cpp ├── yosupo-dynamic-sequence-range-affine-range-sum.test.cpp ├── yosupo-dynamic-tree-subtree-add-subtree-sum.test.cpp ├── yosupo-dynamic-tree-vertex-add-path-sum.test.cpp ├── yosupo-dynamic-tree-vertex-add-subtree-sum-2.test.cpp ├── yosupo-dynamic-tree-vertex-add-subtree-sum.test.cpp ├── yosupo-dynamic-tree-vertex-set-path-composite.test.cpp ├── yosupo-hash-map-variable-length.test.cpp ├── yosupo-hashmap.test.cpp ├── yosupo-lazysegtree-2.test.cpp ├── yosupo-lazysegtree.test.cpp ├── yosupo-line-add-get-min.test.cpp ├── yosupo-offline-dynamic-connectivity.test.cpp ├── yosupo-orderedmap.test.cpp ├── yosupo-persistent-queue.test.cpp ├── yosupo-persistent-unionfind.test.cpp ├── yosupo-point-add-range-sum-dynamic-segtree.test.cpp ├── yosupo-point-add-range-sum.test.cpp ├── yosupo-point-add-rectangle-sum-abstruct-range-tree.test.cpp ├── yosupo-point-add-rectangle-sum-bit2d.test.cpp ├── yosupo-point-add-rectangle-sum-dseg2d.test.cpp ├── yosupo-point-add-rectangle-sum-rtree-fenwick.test.cpp ├── yosupo-point-add-rectangle-sum-segtree-on-wm.test.cpp ├── yosupo-point-add-rectangle-sum-wm.test.cpp ├── yosupo-point-set-range-composite-dynamic-segtree.test.cpp ├── yosupo-point-set-range-composite-rbstseg.test.cpp ├── yosupo-point-set-range-composite-rbstseg2.test.cpp ├── yosupo-precedessor-problem-segtree.test.cpp ├── yosupo-predecessor-problem-vEB-tree.test.cpp ├── yosupo-predecessor-problem.test.cpp ├── yosupo-procedessor-problem-rbstseg.test.cpp ├── yosupo-range-add-range-sum-linkcuttree.test.cpp ├── yosupo-range-affine-point-get-2.test.cpp ├── yosupo-range-affine-point-get.test.cpp ├── yosupo-range-affine-range-sum-dynamic-segtree.test.cpp ├── yosupo-range-affine-range-sum-rbstseg.test.cpp ├── yosupo-range-affine-sqdec.test.cpp ├── yosupo-range-parallel-unionfind.test.cpp ├── yosupo-range-reverse-range-sum.test.cpp ├── yosupo-range-set-range-composite.test.cpp ├── yosupo-rectangle-sum.test.cpp ├── yosupo-rollback-union-find.test.cpp ├── yosupo-segment-add-get-min.test.cpp ├── yosupo-segtree-beats.test.cpp ├── yosupo-static-range-inversion-query-2.test.cpp ├── yosupo-static-range-inversions-query.test.cpp ├── yosupo-static-rectangle-add-rectangle-sum.test.cpp ├── yosupo-static-rmq.test.cpp ├── yosupo-swag.test.cpp ├── yosupo-vertex-add-path-sum-euler-tour.test.cpp ├── yosupo-vertex-add-path-sum.test.cpp ├── yosupo-vertex-add-subtree-sum-dst-on-tree.test.cpp ├── yosupo-vertex-add-subtree-sum-euler-tree.test.cpp ├── yosupo-vertex-add-subtree-sum.test.cpp └── yosupo-vertex-set-path-composite.test.cpp ├── verify-yosupo-fps ├── yosupo-composition-fast.test.cpp ├── yosupo-composition-large.test.cpp ├── yosupo-composition.test.cpp ├── yosupo-compositional-inverse-large.test.cpp ├── yosupo-compositional-inverse-newton.test.cpp ├── yosupo-compositional-inverse.test.cpp ├── yosupo-division-of-polynomials.test.cpp ├── yosupo-exp-arb.test.cpp ├── yosupo-exp-newton-method-2.test.cpp ├── yosupo-exp-newton-method.test.cpp ├── yosupo-exp-ofps.test.cpp ├── yosupo-exp-relaxed-convolution.test.cpp ├── yosupo-exp.test.cpp ├── yosupo-factorial-p-recursive.test.cpp ├── yosupo-factorial.test.cpp ├── yosupo-interpolation.test.cpp ├── yosupo-inv-arb.test.cpp ├── yosupo-inv-newton-method.test.cpp ├── yosupo-inv-of-polynomials.test.cpp ├── yosupo-inv-ofps.test.cpp ├── yosupo-inv-relaxed-convolution.test.cpp ├── yosupo-inv.test.cpp ├── yosupo-linear-recurrence.test.cpp ├── yosupo-log-arb.test.cpp ├── yosupo-log.test.cpp ├── yosupo-multieval-fast.test.cpp ├── yosupo-multieval.test.cpp ├── yosupo-polynomial-interpolation-fast.test.cpp ├── yosupo-polynomial-root-finding.test.cpp ├── yosupo-pow-arb.test.cpp ├── yosupo-pow.test.cpp ├── yosupo-product-of-polynomial-sequence.test.cpp ├── yosupo-sample-point-shift.test.cpp ├── yosupo-sparse-exp.test.cpp ├── yosupo-sparse-inv.test.cpp ├── yosupo-sparse-log.test.cpp ├── yosupo-sparse-pow.test.cpp ├── yosupo-sqrt.test.cpp ├── yosupo-stirling-1st-row.test.cpp ├── yosupo-stirling-1st.test.cpp ├── yosupo-stirling-2nd-row.test.cpp ├── yosupo-stirling-2nd.test.cpp ├── yosupo-sum-of-exp-poly-limit.test.cpp ├── yosupo-sum-of-exp-poly.test.cpp └── yosupo-taylor-shift.test.cpp ├── verify-yosupo-graph ├── yosupo-cartesian.test.cpp ├── yosupo-chromatic-number.test.cpp ├── yosupo-cycle-detection.test.cpp ├── yosupo-diameter.test.cpp ├── yosupo-directed-mst.test.cpp ├── yosupo-exp-of-set-power-series.test.cpp ├── yosupo-frequency-table-of-tree-distance.test.cpp ├── yosupo-jump-on-tree.test.cpp ├── yosupo-lowest-common-ancestor-doubling.test.cpp ├── yosupo-lowest-common-ancestor-euler-tour.test.cpp ├── yosupo-lowest-common-ancestor-tree-util.test.cpp ├── yosupo-lowest-common-ancestor.test.cpp ├── yosupo-matching-on-bipartite-graph.test.cpp ├── yosupo-max-independent-set.test.cpp ├── yosupo-point-set-tree-path-composite-sum-fixed-root-2.test.cpp ├── yosupo-point-set-tree-path-composite-sum-fixed-root.test.cpp ├── yosupo-point-set-tree-path-composite-sum.test.cpp ├── yosupo-scc-atcoder.test.cpp ├── yosupo-shortest-path-2.test.cpp ├── yosupo-shortest-path-3.test.cpp ├── yosupo-shortest-path-4.test.cpp ├── yosupo-shortest-path-dijkstra-abstruct.test.cpp ├── yosupo-shortest-path.test.cpp ├── yosupo-strongly-connected-components.test.cpp ├── yosupo-tree-hash.test.cpp ├── yosupo-tree-path-composite-sum.test.cpp └── yosupo-two-edge-cc.test.cpp ├── verify-yosupo-math ├── yosupo-addition-of-big-integers.test.cpp ├── yosupo-addition-of-hex.test.cpp ├── yosupo-binomial-coefficient-large.test.cpp ├── yosupo-binomial-coefficient-prime-mod.test.cpp ├── yosupo-binomial-coefficient.test.cpp ├── yosupo-characteristic-polynomial.test.cpp ├── yosupo-concave-min-plus-convolution-1.test.cpp ├── yosupo-concave-min-plus-convolution-2.test.cpp ├── yosupo-concave-min-plus-convolution-3.test.cpp ├── yosupo-concave-min-plus-convolution-4.test.cpp ├── yosupo-count-squarefrees.test.cpp ├── yosupo-counting-primes-2.test.cpp ├── yosupo-counting-primes-3.test.cpp ├── yosupo-counting-primes-4.test.cpp ├── yosupo-counting-primes.test.cpp ├── yosupo-determinant-arbitrary-mod.test.cpp ├── yosupo-determinant-matrixlib.test.cpp ├── yosupo-determinant-of-matrix-bbla.test.cpp ├── yosupo-determinant-of-matrix-mod-2.test.cpp ├── yosupo-determinant-of-sparse-matrix-bbla.test.cpp ├── yosupo-determinant.test.cpp ├── yosupo-division-of-big-integers.test.cpp ├── yosupo-division-of-hex.test.cpp ├── yosupo-enumerate-quotient.test.cpp ├── yosupo-factorization.test.cpp ├── yosupo-gcd-convolution.test.cpp ├── yosupo-gcd-of-gaussian-integer.test.cpp ├── yosupo-hafnian-of-matrix.test.cpp ├── yosupo-inverse-matrix-mod-2.test.cpp ├── yosupo-inverse-matrix.test.cpp ├── yosupo-kth-root-integral.test.cpp ├── yosupo-kth-root-mod.test.cpp ├── yosupo-lcm-convolution.test.cpp ├── yosupo-linear-equation-2.test.cpp ├── yosupo-linear-equation.test.cpp ├── yosupo-longest-increasing-sequence.test.cpp ├── yosupo-matrix-product-mod-2.test.cpp ├── yosupo-matrix-product-strassen.test.cpp ├── yosupo-matrix-product-vectorize-modint.test.cpp ├── yosupo-mod-log.test.cpp ├── yosupo-mod-sqrt.test.cpp ├── yosupo-multiplication-of-big-integers.test.cpp ├── yosupo-multiplication-of-hex.test.cpp ├── yosupo-nim-product.test.cpp ├── yosupo-polynomial-composite-set-power-series.test.cpp ├── yosupo-pow-of-matrix-2.test.cpp ├── yosupo-pow-of-matrix.test.cpp ├── yosupo-primality-test-u64.test.cpp ├── yosupo-primality-test.test.cpp ├── yosupo-prime-enumerate-sieve.test.cpp ├── yosupo-prime-table.test.cpp ├── yosupo-primitive-root.test.cpp ├── yosupo-rank-of-matrix.test.cpp ├── yosupo-rational-approximation.test.cpp ├── yosupo-sparse-determinant.test.cpp ├── yosupo-stern-brocot-tree-2.test.cpp ├── yosupo-stern-brocot-tree.test.cpp ├── yosupo-subset-convolution-fast.test.cpp ├── yosupo-subset-convolution.test.cpp ├── yosupo-sum-of-floor.test.cpp ├── yosupo-sum-of-totient-2.test.cpp ├── yosupo-sum-of-totient-3.test.cpp ├── yosupo-sum-of-totient.test.cpp ├── yosupo-tetration-mod.test.cpp ├── yosupo-two-sat-atcoder.test.cpp ├── yosupo-two-sat.test.cpp └── yosupo-two-square-sum.test.cpp ├── verify-yosupo-ntt ├── yosupo-convolution-2-64-karatsuba.test.cpp ├── yosupo-convolution-arbitrarylengthntt.test.cpp ├── yosupo-convolution-arbitraryntt-arbitrarymodint.test.cpp ├── yosupo-convolution-arbitraryntt-arbitraryprimemodint.test.cpp ├── yosupo-convolution-arbitraryntt.test.cpp ├── yosupo-convolution-chirp-z.test.cpp ├── yosupo-convolution-large.test.cpp ├── yosupo-convolution-ntt-avx2.test.cpp ├── yosupo-convolution-ntt-normalmodint.test.cpp ├── yosupo-convolution-ntt-sse42.test.cpp ├── yosupo-convolution-ntt.test.cpp ├── yosupo-convolution-on-z-pz.test.cpp ├── yosupo-convolution-real-fft-15bit.test.cpp ├── yosupo-convolution-real-fft-toom-3.test.cpp ├── yosupo-convolution-relaxed-convolution.test.cpp ├── yosupo-convolution-schoenhage-radix2.test.cpp ├── yosupo-inliner-multiply.test.cpp ├── yosupo-multiplicative-convolution.test.cpp ├── yosupo-multipoint-evaluation-chirp-z.test.cpp └── yosupo-multivariate-circular-convolution.test.cpp ├── verify-yosupo-other ├── yosupo-a-plus-b-128bit-bigint.test.cpp ├── yosupo-a-plus-b-128bit-fastio.test.cpp ├── yosupo-a-plus-b-128bit.test.cpp ├── yosupo-a-plus-b.test.cpp ├── yosupo-argument-sort.test.cpp ├── yosupo-many-a-plus-b.test.cpp ├── yosupo-static-convex-hull-2.test.cpp └── yosupo-static-convex-hull.test.cpp ├── verify-yosupo-string ├── yosupo-enumerate-palindromes-roriha.test.cpp ├── yosupo-number-of-subsequences.test.cpp ├── yosupo-number-of-substrings-suffixautomaton.test.cpp ├── yosupo-number-of-substrings.test.cpp ├── yosupo-run-enumerate.test.cpp ├── yosupo-suffix-array.test.cpp ├── yosupo-wildcard-pattern-matching.test.cpp ├── yosupo-z-algorithm.test.cpp ├── yosupo-zalgo-rollinghash.test.cpp └── yosupo-zalgo-suffixarray.test.cpp └── verify-yuki ├── yuki-0002.test.cpp ├── yuki-0102.test.cpp ├── yuki-0103.test.cpp ├── yuki-0117.test.cpp ├── yuki-0125.test.cpp ├── yuki-0214.test.cpp ├── yuki-0215-nth-term.test.cpp ├── yuki-0215.test.cpp ├── yuki-0303.test.cpp ├── yuki-0361.test.cpp ├── yuki-0430-2.test.cpp ├── yuki-0430.test.cpp ├── yuki-0502-base64.test.cpp ├── yuki-0502.test.cpp ├── yuki-0697.test.cpp ├── yuki-0703.test.cpp ├── yuki-0704.test.cpp ├── yuki-0705.test.cpp ├── yuki-0720.test.cpp ├── yuki-0768.test.cpp ├── yuki-0789.test.cpp ├── yuki-0875-binary-search-on-segtree.test.cpp ├── yuki-0879.test.cpp ├── yuki-0880.test.cpp ├── yuki-0886.test.cpp ├── yuki-0890.test.cpp ├── yuki-0896.test.cpp ├── yuki-0952.test.cpp ├── yuki-0963-circular.test.cpp ├── yuki-0963.test.cpp ├── yuki-1080.test.cpp ├── yuki-1112-sparse.test.cpp ├── yuki-1112.test.cpp ├── yuki-1115.test.cpp ├── yuki-1145-frac.test.cpp ├── yuki-1145.test.cpp ├── yuki-1170-divide-interval.test.cpp ├── yuki-1170.test.cpp ├── yuki-1220.test.cpp ├── yuki-1254-2.test.cpp ├── yuki-1254.test.cpp ├── yuki-1269.test.cpp ├── yuki-1283.test.cpp ├── yuki-1303.test.cpp ├── yuki-1320.test.cpp ├── yuki-1323.test.cpp ├── yuki-1326.test.cpp ├── yuki-1340-bitmatrix.test.cpp ├── yuki-1340-semiring.test.cpp ├── yuki-1460.test.cpp ├── yuki-1467-weighted.test.cpp ├── yuki-1467.test.cpp ├── yuki-1504.test.cpp ├── yuki-1510.test.cpp ├── yuki-1533.test.cpp ├── yuki-1775.test.cpp ├── yuki-1777.test.cpp ├── yuki-1778.test.cpp ├── yuki-1781.test.cpp ├── yuki-1783.test.cpp ├── yuki-1786.test.cpp ├── yuki-1787.test.cpp ├── yuki-1789.test.cpp ├── yuki-1875.test.cpp ├── yuki-1939-2.test.cpp ├── yuki-1939-sparse-pow.test.cpp ├── yuki-1939.test.cpp ├── yuki-1976.test.cpp ├── yuki-2012.test.cpp ├── yuki-2231.test.cpp ├── yuki-2262.test.cpp ├── yuki-2266.test.cpp ├── yuki-2281.test.cpp ├── yuki-2333.test.cpp ├── yuki-2360.test.cpp ├── yuki-2580.test.cpp ├── yuki-2588.test.cpp ├── yuki-2661.test.cpp ├── yuki-2677.test.cpp ├── yuki-2883.test.cpp ├── yuki-3024.test.cpp └── yuki-helloworld.test.cpp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.verify-helper/config.toml: -------------------------------------------------------------------------------- 1 | [[languages.cpp.environments]] 2 | CXX = "g++" 3 | -------------------------------------------------------------------------------- /.verify-helper/docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.verify-helper/docs/_config.yml -------------------------------------------------------------------------------- /.verify-helper/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.verify-helper/docs/index.md -------------------------------------------------------------------------------- /.verify-helper/docs/static/nyaan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.verify-helper/docs/static/nyaan.png -------------------------------------------------------------------------------- /.verify-helper/docs/static/suffix_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.verify-helper/docs/static/suffix_link.png -------------------------------------------------------------------------------- /.verify-helper/timestamps.remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.verify-helper/timestamps.remote.json -------------------------------------------------------------------------------- /.vscode/cpp.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.vscode/cpp.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/README.md -------------------------------------------------------------------------------- /atcoder/convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/convolution.hpp -------------------------------------------------------------------------------- /atcoder/dsu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/dsu.hpp -------------------------------------------------------------------------------- /atcoder/fenwicktree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/fenwicktree.hpp -------------------------------------------------------------------------------- /atcoder/internal_bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/internal_bit.hpp -------------------------------------------------------------------------------- /atcoder/internal_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/internal_csr.hpp -------------------------------------------------------------------------------- /atcoder/internal_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/internal_math.hpp -------------------------------------------------------------------------------- /atcoder/internal_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/internal_queue.hpp -------------------------------------------------------------------------------- /atcoder/internal_scc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/internal_scc.hpp -------------------------------------------------------------------------------- /atcoder/internal_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/internal_type_traits.hpp -------------------------------------------------------------------------------- /atcoder/lazysegtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/lazysegtree.hpp -------------------------------------------------------------------------------- /atcoder/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/math.hpp -------------------------------------------------------------------------------- /atcoder/maxflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/maxflow.hpp -------------------------------------------------------------------------------- /atcoder/mincostflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/mincostflow.hpp -------------------------------------------------------------------------------- /atcoder/modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/modint.hpp -------------------------------------------------------------------------------- /atcoder/scc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/scc.hpp -------------------------------------------------------------------------------- /atcoder/segtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/segtree.hpp -------------------------------------------------------------------------------- /atcoder/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/string.hpp -------------------------------------------------------------------------------- /atcoder/twosat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/atcoder/twosat.hpp -------------------------------------------------------------------------------- /bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/bundle.py -------------------------------------------------------------------------------- /compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/compress.py -------------------------------------------------------------------------------- /data-structure-2d/2d-binary-indexed-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/2d-binary-indexed-tree.hpp -------------------------------------------------------------------------------- /data-structure-2d/2d-cumulative-sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/2d-cumulative-sum.hpp -------------------------------------------------------------------------------- /data-structure-2d/2d-segment-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/2d-segment-tree.hpp -------------------------------------------------------------------------------- /data-structure-2d/abstract-range-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/abstract-range-tree.hpp -------------------------------------------------------------------------------- /data-structure-2d/dynamic-binary-indexed-tree-2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/dynamic-binary-indexed-tree-2d.hpp -------------------------------------------------------------------------------- /data-structure-2d/fenwick-tree-on-range-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/fenwick-tree-on-range-tree.hpp -------------------------------------------------------------------------------- /data-structure-2d/fenwick-tree-on-wavelet-matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/fenwick-tree-on-wavelet-matrix.hpp -------------------------------------------------------------------------------- /data-structure-2d/rectangle-add-rectangle-sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/rectangle-add-rectangle-sum.hpp -------------------------------------------------------------------------------- /data-structure-2d/rectangle-sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/rectangle-sum.hpp -------------------------------------------------------------------------------- /data-structure-2d/segment-tree-on-range-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/segment-tree-on-range-tree.hpp -------------------------------------------------------------------------------- /data-structure-2d/segment-tree-on-wavelet-matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/segment-tree-on-wavelet-matrix.hpp -------------------------------------------------------------------------------- /data-structure-2d/wavelet-matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure-2d/wavelet-matrix.hpp -------------------------------------------------------------------------------- /data-structure/binary-indexed-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/binary-indexed-tree.hpp -------------------------------------------------------------------------------- /data-structure/binary-trie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/binary-trie.hpp -------------------------------------------------------------------------------- /data-structure/divide-interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/divide-interval.hpp -------------------------------------------------------------------------------- /data-structure/dynamic-binary-indexed-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/dynamic-binary-indexed-tree.hpp -------------------------------------------------------------------------------- /data-structure/dynamic-bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/dynamic-bitset.hpp -------------------------------------------------------------------------------- /data-structure/dynamic-union-find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/dynamic-union-find.hpp -------------------------------------------------------------------------------- /data-structure/erasable-priority-queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/erasable-priority-queue.hpp -------------------------------------------------------------------------------- /data-structure/hash-map-variable-length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/hash-map-variable-length.hpp -------------------------------------------------------------------------------- /data-structure/line-container-2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/line-container-2d.hpp -------------------------------------------------------------------------------- /data-structure/line-container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/line-container.hpp -------------------------------------------------------------------------------- /data-structure/parallel-union-find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/parallel-union-find.hpp -------------------------------------------------------------------------------- /data-structure/persistent-array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/persistent-array.hpp -------------------------------------------------------------------------------- /data-structure/persistent-queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/persistent-queue.hpp -------------------------------------------------------------------------------- /data-structure/persistent-union-find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/persistent-union-find.hpp -------------------------------------------------------------------------------- /data-structure/radix-heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/radix-heap.hpp -------------------------------------------------------------------------------- /data-structure/range-sum-range-add-bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/range-sum-range-add-bit.hpp -------------------------------------------------------------------------------- /data-structure/range-union-find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/range-union-find.hpp -------------------------------------------------------------------------------- /data-structure/rollback-union-find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/rollback-union-find.hpp -------------------------------------------------------------------------------- /data-structure/segment-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/segment-set.hpp -------------------------------------------------------------------------------- /data-structure/skew-heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/skew-heap.hpp -------------------------------------------------------------------------------- /data-structure/slide-window-aggregation-deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/slide-window-aggregation-deque.hpp -------------------------------------------------------------------------------- /data-structure/slide-window-aggregation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/slide-window-aggregation.hpp -------------------------------------------------------------------------------- /data-structure/sliding-window-minimum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/sliding-window-minimum.hpp -------------------------------------------------------------------------------- /data-structure/slope-trick-weighted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/slope-trick-weighted.hpp -------------------------------------------------------------------------------- /data-structure/slope-trick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/slope-trick.hpp -------------------------------------------------------------------------------- /data-structure/sparse-table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/sparse-table.hpp -------------------------------------------------------------------------------- /data-structure/square-root-decomposition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/square-root-decomposition.hpp -------------------------------------------------------------------------------- /data-structure/union-find-enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/union-find-enumerate.hpp -------------------------------------------------------------------------------- /data-structure/union-find-with-potential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/union-find-with-potential.hpp -------------------------------------------------------------------------------- /data-structure/union-find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/union-find.hpp -------------------------------------------------------------------------------- /data-structure/van-emde-boas-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/van-emde-boas-tree.hpp -------------------------------------------------------------------------------- /data-structure/w-ary-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/data-structure/w-ary-tree.hpp -------------------------------------------------------------------------------- /docs/data-structure-2d/2d-segment-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure-2d/2d-segment-tree.md -------------------------------------------------------------------------------- /docs/data-structure-2d/wavelet-matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure-2d/wavelet-matrix.md -------------------------------------------------------------------------------- /docs/data-structure/binary-indexed-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/binary-indexed-tree.md -------------------------------------------------------------------------------- /docs/data-structure/binary-trie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/binary-trie.md -------------------------------------------------------------------------------- /docs/data-structure/dynamic-binary-indexed-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/dynamic-binary-indexed-tree.md -------------------------------------------------------------------------------- /docs/data-structure/dynamic-union-find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/dynamic-union-find.md -------------------------------------------------------------------------------- /docs/data-structure/hash-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/hash-map.md -------------------------------------------------------------------------------- /docs/data-structure/radix-heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/radix-heap.md -------------------------------------------------------------------------------- /docs/data-structure/rollback-union-find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/rollback-union-find.md -------------------------------------------------------------------------------- /docs/data-structure/skew-heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/skew-heap.md -------------------------------------------------------------------------------- /docs/data-structure/slide-window-aggregation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/slide-window-aggregation.md -------------------------------------------------------------------------------- /docs/data-structure/sqrt-dec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/sqrt-dec.md -------------------------------------------------------------------------------- /docs/data-structure/union-find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/data-structure/union-find.md -------------------------------------------------------------------------------- /docs/dp/branch-and-bound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/dp/branch-and-bound.md -------------------------------------------------------------------------------- /docs/dp/knapsack01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/dp/knapsack01.md -------------------------------------------------------------------------------- /docs/dp/maximal-rectangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/dp/maximal-rectangle.md -------------------------------------------------------------------------------- /docs/flow/flow-on-bipartite-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/flow/flow-on-bipartite-graph.md -------------------------------------------------------------------------------- /docs/fps/differential-equation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/differential-equation.md -------------------------------------------------------------------------------- /docs/fps/find-p-recursive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/find-p-recursive.md -------------------------------------------------------------------------------- /docs/fps/formal-power-series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/formal-power-series.md -------------------------------------------------------------------------------- /docs/fps/fps-circular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/fps-circular.md -------------------------------------------------------------------------------- /docs/fps/fps-composition-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/fps-composition-old.md -------------------------------------------------------------------------------- /docs/fps/fps-sqrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/fps-sqrt.md -------------------------------------------------------------------------------- /docs/fps/fps-taylor-shift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/fps-taylor-shift.md -------------------------------------------------------------------------------- /docs/fps/kitamasa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/kitamasa.md -------------------------------------------------------------------------------- /docs/fps/nth-term.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/nth-term.md -------------------------------------------------------------------------------- /docs/fps/ntt-friendly-fps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/ntt-friendly-fps.md -------------------------------------------------------------------------------- /docs/fps/polynomial-gcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/polynomial-gcd.md -------------------------------------------------------------------------------- /docs/fps/sum-of-exponential-times-poly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/fps/sum-of-exponential-times-poly.md -------------------------------------------------------------------------------- /docs/graph/chromatic-number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/graph/chromatic-number.md -------------------------------------------------------------------------------- /docs/graph/functional-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/graph/functional-graph.md -------------------------------------------------------------------------------- /docs/graph/graph-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/graph/graph-template.md -------------------------------------------------------------------------------- /docs/graph/graph-utility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/graph/graph-utility.md -------------------------------------------------------------------------------- /docs/graph/static-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/graph/static-graph.md -------------------------------------------------------------------------------- /docs/hashmap/hashmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/hashmap/hashmap.md -------------------------------------------------------------------------------- /docs/hashmap/hashmap_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/hashmap/hashmap_all.md -------------------------------------------------------------------------------- /docs/hashmap/hashset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/hashmap/hashset.md -------------------------------------------------------------------------------- /docs/internal/internal-hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/internal/internal-hash.md -------------------------------------------------------------------------------- /docs/lct/link-cut-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/lct/link-cut-tree.md -------------------------------------------------------------------------------- /docs/marathon/sa-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/marathon/sa-manager.md -------------------------------------------------------------------------------- /docs/marathon/simulated-annealing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/marathon/simulated-annealing.md -------------------------------------------------------------------------------- /docs/math/kth-root-integral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/math/kth-root-integral.md -------------------------------------------------------------------------------- /docs/math/nimber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/math/nimber.md -------------------------------------------------------------------------------- /docs/math/semiring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/math/semiring.md -------------------------------------------------------------------------------- /docs/math/two-sat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/math/two-sat.md -------------------------------------------------------------------------------- /docs/matrix/polynomial-matrix-determinant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/matrix/polynomial-matrix-determinant.md -------------------------------------------------------------------------------- /docs/misc/doubling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/misc/doubling.md -------------------------------------------------------------------------------- /docs/misc/mo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/misc/mo.md -------------------------------------------------------------------------------- /docs/modulo/arbitrary-mod-binomial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/modulo/arbitrary-mod-binomial.md -------------------------------------------------------------------------------- /docs/modulo/factorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/modulo/factorial.md -------------------------------------------------------------------------------- /docs/modulo/mod-kth-root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/modulo/mod-kth-root.md -------------------------------------------------------------------------------- /docs/modulo/mod-sqrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/modulo/mod-sqrt.md -------------------------------------------------------------------------------- /docs/modulo/tetration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/modulo/tetration.md -------------------------------------------------------------------------------- /docs/multiplicative-function/mf-famous-series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/multiplicative-function/mf-famous-series.md -------------------------------------------------------------------------------- /docs/multiplicative-function/prime-counting-o2d3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/multiplicative-function/prime-counting-o2d3.md -------------------------------------------------------------------------------- /docs/multiplicative-function/prime-counting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/multiplicative-function/prime-counting.md -------------------------------------------------------------------------------- /docs/ntt/multivariate-multiplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/ntt/multivariate-multiplication.md -------------------------------------------------------------------------------- /docs/prime/fast-factorize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/prime/fast-factorize.md -------------------------------------------------------------------------------- /docs/rbst/lazy-reversible-rbst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/rbst/lazy-reversible-rbst.md -------------------------------------------------------------------------------- /docs/segment-tree/lazy-segment-tree-utility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/segment-tree/lazy-segment-tree-utility.md -------------------------------------------------------------------------------- /docs/segment-tree/persistent-segtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/segment-tree/persistent-segtree.md -------------------------------------------------------------------------------- /docs/segment-tree/segment-tree-beats-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/segment-tree/segment-tree-beats-abstract.md -------------------------------------------------------------------------------- /docs/segment-tree/segment-tree-beats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/segment-tree/segment-tree-beats.md -------------------------------------------------------------------------------- /docs/set-function/subset-convolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/set-function/subset-convolution.md -------------------------------------------------------------------------------- /docs/shortest-path/dijkstra-fast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/shortest-path/dijkstra-fast.md -------------------------------------------------------------------------------- /docs/shortest-path/dijkstra-radix-heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/shortest-path/dijkstra-radix-heap.md -------------------------------------------------------------------------------- /docs/shortest-path/dijkstra-skew-heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/shortest-path/dijkstra-skew-heap.md -------------------------------------------------------------------------------- /docs/shortest-path/dijkstra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/shortest-path/dijkstra.md -------------------------------------------------------------------------------- /docs/string/rolling-hash-2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/string/rolling-hash-2d.md -------------------------------------------------------------------------------- /docs/string/rolling-hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/string/rolling-hash.md -------------------------------------------------------------------------------- /docs/string/suffix-automaton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/string/suffix-automaton.md -------------------------------------------------------------------------------- /docs/tree/cartesian-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/tree/cartesian-tree.md -------------------------------------------------------------------------------- /docs/tree/centroid-decomposition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/tree/centroid-decomposition.md -------------------------------------------------------------------------------- /docs/tree/dsu-on-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/tree/dsu-on-tree.md -------------------------------------------------------------------------------- /docs/tree/euler-tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/tree/euler-tour.md -------------------------------------------------------------------------------- /docs/tree/frequency-table-of-tree-distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/tree/frequency-table-of-tree-distance.md -------------------------------------------------------------------------------- /docs/tree/heavy-light-decomposition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/tree/heavy-light-decomposition.md -------------------------------------------------------------------------------- /docs/tree/rerooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/tree/rerooting.md -------------------------------------------------------------------------------- /docs/tree/tree-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/docs/tree/tree-query.md -------------------------------------------------------------------------------- /dp/branch-and-bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/branch-and-bound.hpp -------------------------------------------------------------------------------- /dp/concave-min-plus-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/concave-min-plus-convolution.hpp -------------------------------------------------------------------------------- /dp/golden-section-search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/golden-section-search.hpp -------------------------------------------------------------------------------- /dp/inversion-counting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/inversion-counting.hpp -------------------------------------------------------------------------------- /dp/knapsack01.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/knapsack01.hpp -------------------------------------------------------------------------------- /dp/longest-increasing-sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/longest-increasing-sequence.hpp -------------------------------------------------------------------------------- /dp/maximal-rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/maximal-rectangle.hpp -------------------------------------------------------------------------------- /dp/monge-d-edge-shortest-path-enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/monge-d-edge-shortest-path-enumerate.hpp -------------------------------------------------------------------------------- /dp/monge-d-edge-shortest-path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/monge-d-edge-shortest-path.hpp -------------------------------------------------------------------------------- /dp/monge-shortest-path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/monge-shortest-path.hpp -------------------------------------------------------------------------------- /dp/monotone-minima.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/dp/monotone-minima.hpp -------------------------------------------------------------------------------- /flow/flow-on-bipartite-graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/flow/flow-on-bipartite-graph.hpp -------------------------------------------------------------------------------- /fps/arbitrary-fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/arbitrary-fps.hpp -------------------------------------------------------------------------------- /fps/berlekamp-massey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/berlekamp-massey.hpp -------------------------------------------------------------------------------- /fps/composite-exp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/composite-exp.hpp -------------------------------------------------------------------------------- /fps/differential-equation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/differential-equation.hpp -------------------------------------------------------------------------------- /fps/dual-fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/dual-fps.hpp -------------------------------------------------------------------------------- /fps/fast-interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fast-interpolate.hpp -------------------------------------------------------------------------------- /fps/fast-multieval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fast-multieval.hpp -------------------------------------------------------------------------------- /fps/fft2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fft2d.hpp -------------------------------------------------------------------------------- /fps/find-p-recursive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/find-p-recursive.hpp -------------------------------------------------------------------------------- /fps/formal-power-series.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/formal-power-series.hpp -------------------------------------------------------------------------------- /fps/fps-circular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-circular.hpp -------------------------------------------------------------------------------- /fps/fps-composition-fast-old.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-composition-fast-old.hpp -------------------------------------------------------------------------------- /fps/fps-composition-old.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-composition-old.hpp -------------------------------------------------------------------------------- /fps/fps-composition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-composition.hpp -------------------------------------------------------------------------------- /fps/fps-compositional-inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-compositional-inverse.hpp -------------------------------------------------------------------------------- /fps/fps-famous-series.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-famous-series.hpp -------------------------------------------------------------------------------- /fps/fps-fraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-fraction.hpp -------------------------------------------------------------------------------- /fps/fps-sqrt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-sqrt.hpp -------------------------------------------------------------------------------- /fps/fps-utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fps-utility.hpp -------------------------------------------------------------------------------- /fps/fualhuber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/fualhuber.hpp -------------------------------------------------------------------------------- /fps/inversion-formula.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/inversion-formula.hpp -------------------------------------------------------------------------------- /fps/kitamasa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/kitamasa.hpp -------------------------------------------------------------------------------- /fps/lagrange-interpolation-point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/lagrange-interpolation-point.hpp -------------------------------------------------------------------------------- /fps/middle-product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/middle-product.hpp -------------------------------------------------------------------------------- /fps/mod-pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/mod-pow.hpp -------------------------------------------------------------------------------- /fps/multipoint-evaluation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/multipoint-evaluation.hpp -------------------------------------------------------------------------------- /fps/multivariate-fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/multivariate-fps.hpp -------------------------------------------------------------------------------- /fps/newton-method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/newton-method.hpp -------------------------------------------------------------------------------- /fps/nth-term.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/nth-term.hpp -------------------------------------------------------------------------------- /fps/ntt-friendly-fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/ntt-friendly-fps.hpp -------------------------------------------------------------------------------- /fps/online-fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/online-fps.hpp -------------------------------------------------------------------------------- /fps/partial-fraction-decomposition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/partial-fraction-decomposition.hpp -------------------------------------------------------------------------------- /fps/pascal-matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/pascal-matrix.hpp -------------------------------------------------------------------------------- /fps/polynomial-gcd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/polynomial-gcd.hpp -------------------------------------------------------------------------------- /fps/polynomial-interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/polynomial-interpolation.hpp -------------------------------------------------------------------------------- /fps/pow-enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/pow-enumerate.hpp -------------------------------------------------------------------------------- /fps/root-finding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/root-finding.hpp -------------------------------------------------------------------------------- /fps/sample-point-shift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/sample-point-shift.hpp -------------------------------------------------------------------------------- /fps/sparse-fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/sparse-fps.hpp -------------------------------------------------------------------------------- /fps/stirling-matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/stirling-matrix.hpp -------------------------------------------------------------------------------- /fps/sum-of-exponential-times-poly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/sum-of-exponential-times-poly.hpp -------------------------------------------------------------------------------- /fps/taylor-shift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/fps/taylor-shift.hpp -------------------------------------------------------------------------------- /game/impartial-game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/game/impartial-game.hpp -------------------------------------------------------------------------------- /game/partisan-game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/game/partisan-game.hpp -------------------------------------------------------------------------------- /game/surreal-number.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/game/surreal-number.hpp -------------------------------------------------------------------------------- /geometry/circle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/geometry/circle.hpp -------------------------------------------------------------------------------- /geometry/geometry-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/geometry/geometry-base.hpp -------------------------------------------------------------------------------- /geometry/integer-geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/geometry/integer-geometry.hpp -------------------------------------------------------------------------------- /geometry/line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/geometry/line.hpp -------------------------------------------------------------------------------- /geometry/polygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/geometry/polygon.hpp -------------------------------------------------------------------------------- /geometry/segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/geometry/segment.hpp -------------------------------------------------------------------------------- /graph/biconnected-components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/biconnected-components.hpp -------------------------------------------------------------------------------- /graph/chromatic-number.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/chromatic-number.hpp -------------------------------------------------------------------------------- /graph/cycle-detection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/cycle-detection.hpp -------------------------------------------------------------------------------- /graph/dimension-expanded-graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/dimension-expanded-graph.hpp -------------------------------------------------------------------------------- /graph/functional-graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/functional-graph.hpp -------------------------------------------------------------------------------- /graph/graph-template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/graph-template.hpp -------------------------------------------------------------------------------- /graph/graph-utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/graph-utility.hpp -------------------------------------------------------------------------------- /graph/kruskal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/kruskal.hpp -------------------------------------------------------------------------------- /graph/lowlink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/lowlink.hpp -------------------------------------------------------------------------------- /graph/max-independent-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/max-independent-set.hpp -------------------------------------------------------------------------------- /graph/minimum-cost-arborescence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/minimum-cost-arborescence.hpp -------------------------------------------------------------------------------- /graph/namori.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/namori.hpp -------------------------------------------------------------------------------- /graph/offline-dynamic-connectivity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/offline-dynamic-connectivity.hpp -------------------------------------------------------------------------------- /graph/static-graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/static-graph.hpp -------------------------------------------------------------------------------- /graph/strongly-connected-components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/strongly-connected-components.hpp -------------------------------------------------------------------------------- /graph/topological-sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/topological-sort.hpp -------------------------------------------------------------------------------- /graph/two-edge-connected-components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/graph/two-edge-connected-components.hpp -------------------------------------------------------------------------------- /hashmap/hashmap-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/hashmap/hashmap-base.hpp -------------------------------------------------------------------------------- /hashmap/hashmap-unerasable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/hashmap/hashmap-unerasable.hpp -------------------------------------------------------------------------------- /hashmap/hashmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/hashmap/hashmap.hpp -------------------------------------------------------------------------------- /hashmap/hashset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/hashmap/hashset.hpp -------------------------------------------------------------------------------- /internal/internal-hash-function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/internal/internal-hash-function.hpp -------------------------------------------------------------------------------- /internal/internal-hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/internal/internal-hash.hpp -------------------------------------------------------------------------------- /internal/internal-math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/internal/internal-math.hpp -------------------------------------------------------------------------------- /internal/internal-seed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/internal/internal-seed.hpp -------------------------------------------------------------------------------- /internal/internal-type-traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/internal/internal-type-traits.hpp -------------------------------------------------------------------------------- /lct/lazy-reversible-bbst-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/lazy-reversible-bbst-base.hpp -------------------------------------------------------------------------------- /lct/link-cut-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/link-cut-base.hpp -------------------------------------------------------------------------------- /lct/link-cut-tree-lazy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/link-cut-tree-lazy.hpp -------------------------------------------------------------------------------- /lct/link-cut-tree-subtree-add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/link-cut-tree-subtree-add.hpp -------------------------------------------------------------------------------- /lct/link-cut-tree-subtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/link-cut-tree-subtree.hpp -------------------------------------------------------------------------------- /lct/link-cut-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/link-cut-tree.hpp -------------------------------------------------------------------------------- /lct/reversible-bbst-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/reversible-bbst-base.hpp -------------------------------------------------------------------------------- /lct/splay-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/splay-base.hpp -------------------------------------------------------------------------------- /lct/splay-lazy-reversible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/splay-lazy-reversible.hpp -------------------------------------------------------------------------------- /lct/splay-reversible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/lct/splay-reversible.hpp -------------------------------------------------------------------------------- /marathon/log_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/marathon/log_table.hpp -------------------------------------------------------------------------------- /marathon/multi-armed-bandit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/marathon/multi-armed-bandit.hpp -------------------------------------------------------------------------------- /marathon/sa-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/marathon/sa-manager.hpp -------------------------------------------------------------------------------- /marathon/simulated-annealing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/marathon/simulated-annealing.hpp -------------------------------------------------------------------------------- /marathon/top-k.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/marathon/top-k.hpp -------------------------------------------------------------------------------- /math-fast/binary-search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math-fast/binary-search.hpp -------------------------------------------------------------------------------- /math-fast/gcd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math-fast/gcd.hpp -------------------------------------------------------------------------------- /math-fast/inv-o1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math-fast/inv-o1.hpp -------------------------------------------------------------------------------- /math-fast/inv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math-fast/inv.hpp -------------------------------------------------------------------------------- /math-fast/mat-prod-strassen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math-fast/mat-prod-strassen.hpp -------------------------------------------------------------------------------- /math-fast/radix-sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math-fast/radix-sort.hpp -------------------------------------------------------------------------------- /math-fast/subset-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math-fast/subset-convolution.hpp -------------------------------------------------------------------------------- /math-fast/vectorize-modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math-fast/vectorize-modint.hpp -------------------------------------------------------------------------------- /math/affine-transformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/affine-transformation.hpp -------------------------------------------------------------------------------- /math/bigint-all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/bigint-all.hpp -------------------------------------------------------------------------------- /math/bigint-binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/bigint-binary.hpp -------------------------------------------------------------------------------- /math/bigint-garner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/bigint-garner.hpp -------------------------------------------------------------------------------- /math/bigint-gcd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/bigint-gcd.hpp -------------------------------------------------------------------------------- /math/bigint-rational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/bigint-rational.hpp -------------------------------------------------------------------------------- /math/bigint-to-hex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/bigint-to-hex.hpp -------------------------------------------------------------------------------- /math/bigint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/bigint.hpp -------------------------------------------------------------------------------- /math/constexpr-primitive-root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/constexpr-primitive-root.hpp -------------------------------------------------------------------------------- /math/elementary-function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/elementary-function.hpp -------------------------------------------------------------------------------- /math/enumerate-convex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/enumerate-convex.hpp -------------------------------------------------------------------------------- /math/enumerate-quotient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/enumerate-quotient.hpp -------------------------------------------------------------------------------- /math/f2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/f2.hpp -------------------------------------------------------------------------------- /math/float-binomial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/float-binomial.hpp -------------------------------------------------------------------------------- /math/floor-sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/floor-sum.hpp -------------------------------------------------------------------------------- /math/garner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/garner.hpp -------------------------------------------------------------------------------- /math/gaussian-integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/gaussian-integer.hpp -------------------------------------------------------------------------------- /math/gray-code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/gray-code.hpp -------------------------------------------------------------------------------- /math/grundy-number.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/grundy-number.hpp -------------------------------------------------------------------------------- /math/inv-mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/inv-mod.hpp -------------------------------------------------------------------------------- /math/isqrt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/isqrt.hpp -------------------------------------------------------------------------------- /math/kth-root-integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/kth-root-integral.hpp -------------------------------------------------------------------------------- /math/nimber-to-field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/nimber-to-field.hpp -------------------------------------------------------------------------------- /math/nimber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/nimber.hpp -------------------------------------------------------------------------------- /math/primitive-root-ll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/primitive-root-ll.hpp -------------------------------------------------------------------------------- /math/rational-binomial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/rational-binomial.hpp -------------------------------------------------------------------------------- /math/rational-fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/rational-fps.hpp -------------------------------------------------------------------------------- /math/rational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/rational.hpp -------------------------------------------------------------------------------- /math/sat-solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/sat-solver.hpp -------------------------------------------------------------------------------- /math/semiring-linear-recursive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/semiring-linear-recursive.hpp -------------------------------------------------------------------------------- /math/semiring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/semiring.hpp -------------------------------------------------------------------------------- /math/stern-brocot-tree-binary-search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/stern-brocot-tree-binary-search.hpp -------------------------------------------------------------------------------- /math/stern-brocot-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/stern-brocot-tree.hpp -------------------------------------------------------------------------------- /math/sweep-restore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/sweep-restore.hpp -------------------------------------------------------------------------------- /math/sweep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/sweep.hpp -------------------------------------------------------------------------------- /math/two-sat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/two-sat.hpp -------------------------------------------------------------------------------- /math/two-square.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/math/two-square.hpp -------------------------------------------------------------------------------- /matrix/black-box-linear-algebra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/black-box-linear-algebra.hpp -------------------------------------------------------------------------------- /matrix/characteristric-polynomial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/characteristric-polynomial.hpp -------------------------------------------------------------------------------- /matrix/determinant-arbitrary-mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/determinant-arbitrary-mod.hpp -------------------------------------------------------------------------------- /matrix/f2-matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/f2-matrix.hpp -------------------------------------------------------------------------------- /matrix/gauss-elimination.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/gauss-elimination.hpp -------------------------------------------------------------------------------- /matrix/hafnian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/hafnian.hpp -------------------------------------------------------------------------------- /matrix/inverse-matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/inverse-matrix.hpp -------------------------------------------------------------------------------- /matrix/linear-equation-hashmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/linear-equation-hashmap.hpp -------------------------------------------------------------------------------- /matrix/linear-equation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/linear-equation.hpp -------------------------------------------------------------------------------- /matrix/matrix-fast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/matrix-fast.hpp -------------------------------------------------------------------------------- /matrix/matrix-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/matrix-tree.hpp -------------------------------------------------------------------------------- /matrix/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/matrix.hpp -------------------------------------------------------------------------------- /matrix/polynomial-matrix-determinant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/polynomial-matrix-determinant.hpp -------------------------------------------------------------------------------- /matrix/polynomial-matrix-prefix-prod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/matrix/polynomial-matrix-prefix-prod.hpp -------------------------------------------------------------------------------- /misc/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/all.hpp -------------------------------------------------------------------------------- /misc/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/base64.hpp -------------------------------------------------------------------------------- /misc/bitset-find-prev.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/bitset-find-prev.hpp -------------------------------------------------------------------------------- /misc/compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/compress.hpp -------------------------------------------------------------------------------- /misc/doubling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/doubling.hpp -------------------------------------------------------------------------------- /misc/fastio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/fastio.hpp -------------------------------------------------------------------------------- /misc/int_div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/int_div.hpp -------------------------------------------------------------------------------- /misc/interval-union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/interval-union.hpp -------------------------------------------------------------------------------- /misc/mo-fast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/mo-fast.hpp -------------------------------------------------------------------------------- /misc/mo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/mo.hpp -------------------------------------------------------------------------------- /misc/rng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/rng.hpp -------------------------------------------------------------------------------- /misc/simd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/simd.hpp -------------------------------------------------------------------------------- /misc/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/timer.hpp -------------------------------------------------------------------------------- /misc/vector-pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/misc/vector-pool.hpp -------------------------------------------------------------------------------- /modint/adjunction-modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/adjunction-modint.hpp -------------------------------------------------------------------------------- /modint/arbitrary-modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/arbitrary-modint.hpp -------------------------------------------------------------------------------- /modint/arbitrary-montgomery-modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/arbitrary-montgomery-modint.hpp -------------------------------------------------------------------------------- /modint/barrett-reduction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/barrett-reduction.hpp -------------------------------------------------------------------------------- /modint/modint-2-61m1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/modint-2-61m1.hpp -------------------------------------------------------------------------------- /modint/modint-cpp11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/modint-cpp11.hpp -------------------------------------------------------------------------------- /modint/modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/modint.hpp -------------------------------------------------------------------------------- /modint/montgomery-modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/montgomery-modint.hpp -------------------------------------------------------------------------------- /modint/simd-montgomery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/simd-montgomery.hpp -------------------------------------------------------------------------------- /modint/vectorize-modint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modint/vectorize-modint.hpp -------------------------------------------------------------------------------- /modulo/arbitrary-mod-binomial-large.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/arbitrary-mod-binomial-large.hpp -------------------------------------------------------------------------------- /modulo/arbitrary-mod-binomial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/arbitrary-mod-binomial.hpp -------------------------------------------------------------------------------- /modulo/binomial-table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/binomial-table.hpp -------------------------------------------------------------------------------- /modulo/binomial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/binomial.hpp -------------------------------------------------------------------------------- /modulo/factorial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/factorial.hpp -------------------------------------------------------------------------------- /modulo/fastpow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/fastpow.hpp -------------------------------------------------------------------------------- /modulo/gauss-elimination-fast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/gauss-elimination-fast.hpp -------------------------------------------------------------------------------- /modulo/mod-kth-root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/mod-kth-root.hpp -------------------------------------------------------------------------------- /modulo/mod-log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/mod-log.hpp -------------------------------------------------------------------------------- /modulo/mod-sqrt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/mod-sqrt.hpp -------------------------------------------------------------------------------- /modulo/multipoint-binomial-sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/multipoint-binomial-sum.hpp -------------------------------------------------------------------------------- /modulo/quadratic-equation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/quadratic-equation.hpp -------------------------------------------------------------------------------- /modulo/strassen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/strassen.hpp -------------------------------------------------------------------------------- /modulo/tetration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/modulo/tetration.hpp -------------------------------------------------------------------------------- /multiplicative-function/count-square-free.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/multiplicative-function/count-square-free.hpp -------------------------------------------------------------------------------- /multiplicative-function/divisor-multiple-transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/multiplicative-function/divisor-multiple-transform.hpp -------------------------------------------------------------------------------- /multiplicative-function/gcd-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/multiplicative-function/gcd-convolution.hpp -------------------------------------------------------------------------------- /multiplicative-function/mf-famous-series.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/multiplicative-function/mf-famous-series.hpp -------------------------------------------------------------------------------- /multiplicative-function/prime-counting-faster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/multiplicative-function/prime-counting-faster.hpp -------------------------------------------------------------------------------- /multiplicative-function/prime-counting-o2d3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/multiplicative-function/prime-counting-o2d3.hpp -------------------------------------------------------------------------------- /multiplicative-function/prime-counting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/multiplicative-function/prime-counting.hpp -------------------------------------------------------------------------------- /multiplicative-function/sum-of-totient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/multiplicative-function/sum-of-totient.hpp -------------------------------------------------------------------------------- /ntt/arbitrary-ntt-mod18446744069414584321.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/arbitrary-ntt-mod18446744069414584321.hpp -------------------------------------------------------------------------------- /ntt/arbitrary-ntt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/arbitrary-ntt.hpp -------------------------------------------------------------------------------- /ntt/chirp-z.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/chirp-z.hpp -------------------------------------------------------------------------------- /ntt/complex-fft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/complex-fft.hpp -------------------------------------------------------------------------------- /ntt/convolution-large.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/convolution-large.hpp -------------------------------------------------------------------------------- /ntt/cooley-tukey-ntt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/cooley-tukey-ntt.hpp -------------------------------------------------------------------------------- /ntt/karatsuba.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/karatsuba.hpp -------------------------------------------------------------------------------- /ntt/multidimensional-ntt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/multidimensional-ntt.hpp -------------------------------------------------------------------------------- /ntt/multiplicative-convolution-mod-p.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/multiplicative-convolution-mod-p.hpp -------------------------------------------------------------------------------- /ntt/multivariate-circular-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/multivariate-circular-convolution.hpp -------------------------------------------------------------------------------- /ntt/multivariate-multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/multivariate-multiplication.hpp -------------------------------------------------------------------------------- /ntt/ntt-64bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/ntt-64bit.hpp -------------------------------------------------------------------------------- /ntt/ntt-avx2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/ntt-avx2.hpp -------------------------------------------------------------------------------- /ntt/ntt-cpp11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/ntt-cpp11.hpp -------------------------------------------------------------------------------- /ntt/ntt-sse42.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/ntt-sse42.hpp -------------------------------------------------------------------------------- /ntt/ntt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/ntt.hpp -------------------------------------------------------------------------------- /ntt/rader-ntt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/rader-ntt.hpp -------------------------------------------------------------------------------- /ntt/relaxed-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/relaxed-convolution.hpp -------------------------------------------------------------------------------- /ntt/schoenhage-strassen-radix2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/ntt/schoenhage-strassen-radix2.hpp -------------------------------------------------------------------------------- /orderedmap/orderedmap-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/orderedmap/orderedmap-base.hpp -------------------------------------------------------------------------------- /orderedmap/orderedmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/orderedmap/orderedmap.hpp -------------------------------------------------------------------------------- /prime/factor-enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/prime/factor-enumerate.hpp -------------------------------------------------------------------------------- /prime/fast-factorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/prime/fast-factorize.hpp -------------------------------------------------------------------------------- /prime/miller-rabin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/prime/miller-rabin.hpp -------------------------------------------------------------------------------- /prime/osak.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/prime/osak.hpp -------------------------------------------------------------------------------- /prime/prime-enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/prime/prime-enumerate.hpp -------------------------------------------------------------------------------- /prime/prime-sieve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/prime/prime-sieve.hpp -------------------------------------------------------------------------------- /random_graph/gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/random_graph/gen.hpp -------------------------------------------------------------------------------- /random_graph/graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/random_graph/graph.hpp -------------------------------------------------------------------------------- /random_graph/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/random_graph/random.hpp -------------------------------------------------------------------------------- /rbst/lazy-reversible-rbst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/rbst/lazy-reversible-rbst.hpp -------------------------------------------------------------------------------- /rbst/rbst-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/rbst/rbst-base.hpp -------------------------------------------------------------------------------- /rbst/treap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/rbst/treap.hpp -------------------------------------------------------------------------------- /segment-tree/dynamic-li-chao-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/dynamic-li-chao-tree.hpp -------------------------------------------------------------------------------- /segment-tree/dynamic-segment-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/dynamic-segment-tree.hpp -------------------------------------------------------------------------------- /segment-tree/lazy-segment-tree-utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/lazy-segment-tree-utility.hpp -------------------------------------------------------------------------------- /segment-tree/lazy-segment-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/lazy-segment-tree.hpp -------------------------------------------------------------------------------- /segment-tree/li-chao-tree-abstruct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/li-chao-tree-abstruct.hpp -------------------------------------------------------------------------------- /segment-tree/li-chao-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/li-chao-tree.hpp -------------------------------------------------------------------------------- /segment-tree/persistent-segment-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/persistent-segment-tree.hpp -------------------------------------------------------------------------------- /segment-tree/range-weighted-add-range-sum-lazyseg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/range-weighted-add-range-sum-lazyseg.hpp -------------------------------------------------------------------------------- /segment-tree/rbst-segment-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/rbst-segment-tree.hpp -------------------------------------------------------------------------------- /segment-tree/rbst-sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/rbst-sequence.hpp -------------------------------------------------------------------------------- /segment-tree/segment-tree-beats-abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/segment-tree-beats-abstract.hpp -------------------------------------------------------------------------------- /segment-tree/segment-tree-beats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/segment-tree-beats.hpp -------------------------------------------------------------------------------- /segment-tree/segment-tree-max-of-interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/segment-tree-max-of-interval.hpp -------------------------------------------------------------------------------- /segment-tree/segment-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/segment-tree/segment-tree.hpp -------------------------------------------------------------------------------- /set-function/and-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/and-convolution.hpp -------------------------------------------------------------------------------- /set-function/enumerate-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/enumerate-set.hpp -------------------------------------------------------------------------------- /set-function/exp-of-set-power-series.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/exp-of-set-power-series.hpp -------------------------------------------------------------------------------- /set-function/or-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/or-convolution.hpp -------------------------------------------------------------------------------- /set-function/polynomial-composite-set-power-series.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/polynomial-composite-set-power-series.hpp -------------------------------------------------------------------------------- /set-function/subset-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/subset-convolution.hpp -------------------------------------------------------------------------------- /set-function/walsh-hadamard-transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/walsh-hadamard-transform.hpp -------------------------------------------------------------------------------- /set-function/xor-convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/xor-convolution.hpp -------------------------------------------------------------------------------- /set-function/zeta-mobius-transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/set-function/zeta-mobius-transform.hpp -------------------------------------------------------------------------------- /shortest-path/bellman-ford.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/bellman-ford.hpp -------------------------------------------------------------------------------- /shortest-path/bfs-restore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/bfs-restore.hpp -------------------------------------------------------------------------------- /shortest-path/bfs01.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/bfs01.hpp -------------------------------------------------------------------------------- /shortest-path/dijkstra-abstruct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/dijkstra-abstruct.hpp -------------------------------------------------------------------------------- /shortest-path/dijkstra-fast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/dijkstra-fast.hpp -------------------------------------------------------------------------------- /shortest-path/dijkstra-radix-heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/dijkstra-radix-heap.hpp -------------------------------------------------------------------------------- /shortest-path/dijkstra-skew-heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/dijkstra-skew-heap.hpp -------------------------------------------------------------------------------- /shortest-path/dijkstra-with-restore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/dijkstra-with-restore.hpp -------------------------------------------------------------------------------- /shortest-path/dijkstra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/dijkstra.hpp -------------------------------------------------------------------------------- /shortest-path/dual-of-shortest-path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/dual-of-shortest-path.hpp -------------------------------------------------------------------------------- /shortest-path/restore-shortest-path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/restore-shortest-path.hpp -------------------------------------------------------------------------------- /shortest-path/warshall-floyd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/shortest-path/warshall-floyd.hpp -------------------------------------------------------------------------------- /string/aho-corasick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/aho-corasick.hpp -------------------------------------------------------------------------------- /string/manacher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/manacher.hpp -------------------------------------------------------------------------------- /string/number-of-subsequences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/number-of-subsequences.hpp -------------------------------------------------------------------------------- /string/rolling-hash-2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/rolling-hash-2d.hpp -------------------------------------------------------------------------------- /string/rolling-hash-on-segment-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/rolling-hash-on-segment-tree.hpp -------------------------------------------------------------------------------- /string/rolling-hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/rolling-hash.hpp -------------------------------------------------------------------------------- /string/run-enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/run-enumerate.hpp -------------------------------------------------------------------------------- /string/run-length-encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/run-length-encoding.hpp -------------------------------------------------------------------------------- /string/string-search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/string-search.hpp -------------------------------------------------------------------------------- /string/suffix-array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/suffix-array.hpp -------------------------------------------------------------------------------- /string/suffix-automaton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/suffix-automaton.hpp -------------------------------------------------------------------------------- /string/trie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/trie.hpp -------------------------------------------------------------------------------- /string/wildcard-pattern-matching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/wildcard-pattern-matching.hpp -------------------------------------------------------------------------------- /string/z-algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/string/z-algorithm.hpp -------------------------------------------------------------------------------- /template/bitop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/template/bitop.hpp -------------------------------------------------------------------------------- /template/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/template/debug.hpp -------------------------------------------------------------------------------- /template/inout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/template/inout.hpp -------------------------------------------------------------------------------- /template/macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/template/macro.hpp -------------------------------------------------------------------------------- /template/template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/template/template.hpp -------------------------------------------------------------------------------- /template/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/template/util.hpp -------------------------------------------------------------------------------- /tree/auxiliary-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/auxiliary-tree.hpp -------------------------------------------------------------------------------- /tree/block-cut-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/block-cut-tree.hpp -------------------------------------------------------------------------------- /tree/cartesian-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/cartesian-tree.hpp -------------------------------------------------------------------------------- /tree/centroid-decomposition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/centroid-decomposition.hpp -------------------------------------------------------------------------------- /tree/centroid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/centroid.hpp -------------------------------------------------------------------------------- /tree/convert-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/convert-tree.hpp -------------------------------------------------------------------------------- /tree/dsu-on-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/dsu-on-tree.hpp -------------------------------------------------------------------------------- /tree/dynamic-diameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/dynamic-diameter.hpp -------------------------------------------------------------------------------- /tree/dynamic-rerooting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/dynamic-rerooting.hpp -------------------------------------------------------------------------------- /tree/euler-tour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/euler-tour.hpp -------------------------------------------------------------------------------- /tree/frequency-table-of-tree-distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/frequency-table-of-tree-distance.hpp -------------------------------------------------------------------------------- /tree/heavy-light-decomposition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/heavy-light-decomposition.hpp -------------------------------------------------------------------------------- /tree/inclusion-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/inclusion-tree.hpp -------------------------------------------------------------------------------- /tree/process-of-merging-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/process-of-merging-tree.hpp -------------------------------------------------------------------------------- /tree/pruefer-code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/pruefer-code.hpp -------------------------------------------------------------------------------- /tree/rerooting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/rerooting.hpp -------------------------------------------------------------------------------- /tree/rooted-tree-hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/rooted-tree-hash.hpp -------------------------------------------------------------------------------- /tree/static-top-tree-edge-based.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/static-top-tree-edge-based.hpp -------------------------------------------------------------------------------- /tree/static-top-tree-vertex-based.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/static-top-tree-vertex-based.hpp -------------------------------------------------------------------------------- /tree/tree-hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/tree-hash.hpp -------------------------------------------------------------------------------- /tree/tree-query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/tree/tree-query.hpp -------------------------------------------------------------------------------- /unused/develop/add-range-edge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/add-range-edge.hpp -------------------------------------------------------------------------------- /unused/develop/black-algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/black-algorithm.hpp -------------------------------------------------------------------------------- /unused/develop/dominator-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/dominator-tree.hpp -------------------------------------------------------------------------------- /unused/develop/dynamic-wavelet-matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/dynamic-wavelet-matrix.hpp -------------------------------------------------------------------------------- /unused/develop/dynamic_bitset_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/dynamic_bitset_matrix.hpp -------------------------------------------------------------------------------- /unused/develop/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/fft.cpp -------------------------------------------------------------------------------- /unused/develop/fft_ver1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/fft_ver1.hpp -------------------------------------------------------------------------------- /unused/develop/fft_ver2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/fft_ver2.cpp -------------------------------------------------------------------------------- /unused/develop/fft_verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/fft_verify.cpp -------------------------------------------------------------------------------- /unused/develop/hld-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/hld-base.hpp -------------------------------------------------------------------------------- /unused/develop/ntt_kakikake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/ntt_kakikake -------------------------------------------------------------------------------- /unused/develop/run-enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/run-enumerate.hpp -------------------------------------------------------------------------------- /unused/develop/schoenhage_strassen_radix3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/develop/schoenhage_strassen_radix3.hpp -------------------------------------------------------------------------------- /unused/old/fast-inv-gcd.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/fast-inv-gcd.test.cpp -------------------------------------------------------------------------------- /unused/old/hashmap-chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/hashmap-chain.hpp -------------------------------------------------------------------------------- /unused/old/hashmap-open-address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/hashmap-open-address.hpp -------------------------------------------------------------------------------- /unused/old/randomized-binary-search-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/randomized-binary-search-tree.hpp -------------------------------------------------------------------------------- /unused/old/range-add-range-max-lazyseg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/range-add-range-max-lazyseg.hpp -------------------------------------------------------------------------------- /unused/old/range-add-range-min-lazyseg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/range-add-range-min-lazyseg.hpp -------------------------------------------------------------------------------- /unused/old/range-add-range-sum-lazyseg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/range-add-range-sum-lazyseg.hpp -------------------------------------------------------------------------------- /unused/old/range-update-range-max-lazyseg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/range-update-range-max-lazyseg.hpp -------------------------------------------------------------------------------- /unused/old/range-update-range-min-lazyseg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/range-update-range-min-lazyseg.hpp -------------------------------------------------------------------------------- /unused/old/range-update-range-sum-lazyseg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/range-update-range-sum-lazyseg.hpp -------------------------------------------------------------------------------- /unused/old/rbst-ordered-map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/rbst-ordered-map.hpp -------------------------------------------------------------------------------- /unused/old/rbst-ordered-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/rbst-ordered-map.md -------------------------------------------------------------------------------- /unused/old/rbst-ordered-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/rbst-ordered-set.hpp -------------------------------------------------------------------------------- /unused/old/rbst-ordered-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/rbst-ordered-set.md -------------------------------------------------------------------------------- /unused/old/trial/fast-gcd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/trial/fast-gcd.hpp -------------------------------------------------------------------------------- /unused/old/trial/fast-gcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/trial/fast-gcd.md -------------------------------------------------------------------------------- /unused/old/trial/fast-inv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/trial/fast-inv.hpp -------------------------------------------------------------------------------- /unused/old/trial/fast-inv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old/trial/fast-inv.md -------------------------------------------------------------------------------- /unused/old_snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/old_snippet -------------------------------------------------------------------------------- /unused/python/fastio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/python/fastio.py -------------------------------------------------------------------------------- /unused/python/ntt-numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/python/ntt-numba.py -------------------------------------------------------------------------------- /unused/python/ntt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/python/ntt.py -------------------------------------------------------------------------------- /unused/python/segtree-immutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/python/segtree-immutable.py -------------------------------------------------------------------------------- /unused/python/segtree-mutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/python/segtree-mutable.py -------------------------------------------------------------------------------- /unused/python/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/python/template.py -------------------------------------------------------------------------------- /unused/python/tuning_optuna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/unused/python/tuning_optuna.py -------------------------------------------------------------------------------- /verify/verify-aoj-alds/verify-aoj-alds-14-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-alds/verify-aoj-alds-14-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-1-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-1-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-1-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-1-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-1-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-1-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-2-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-2-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-2-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-2-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-2-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-2-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-2-d.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-2-d.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-3-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-3-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-3-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-3-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-3-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-3-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-4-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-4-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-4-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-4-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-cgl/aoj-cgl-4-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-cgl/aoj-cgl-4-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dpl/aoj-dpl-1-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dpl/aoj-dpl-1-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dpl/aoj-dpl-1-f-bandb.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dpl/aoj-dpl-1-f-bandb.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dpl/aoj-dpl-1-f.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dpl/aoj-dpl-1-f.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dpl/aoj-dpl-1-h-bandb.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dpl/aoj-dpl-1-h-bandb.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dpl/aoj-dpl-1-h.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dpl/aoj-dpl-1-h.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dpl/aoj-dpl-3-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dpl/aoj-dpl-3-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-1-a-dynamic.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-1-a-dynamic.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-1-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-1-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-1-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-1-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-a-segtree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-a-segtree.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-b-bit.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-b-bit.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-b-segtree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-b-segtree.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-d.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-d.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-e-imos.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-e-imos.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-e.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-e.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-f-max.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-f-max.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-f.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-f.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-g-bit.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-g-bit.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-g.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-g.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-h-max.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-h-max.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-h.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-h.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-2-i.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-2-i.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-3-d-cartesiantree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-3-d-cartesiantree.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-3-d.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-3-d.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-5-b-2dseg.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-5-b-2dseg.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-5-b-bit2d.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-5-b-bit2d.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-dsl/aoj-dsl-5-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-dsl/aoj-dsl-5-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-1-a-fast-dijkstra.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-1-a-fast-dijkstra.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-1-a-radix-heap.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-1-a-radix-heap.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-1-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-1-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-1-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-1-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-1-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-1-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-2-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-2-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-3-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-3-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-3-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-3-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-3-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-3-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-4-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-4-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-4-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-4-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-5-a-rerooting.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-5-a-rerooting.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-5-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-5-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-5-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-5-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-5-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-5-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-5-d.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-5-d.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-grl/aoj-grl-5-e.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-grl/aoj-grl-5-e.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-itp/aoj-itp2-11-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-itp/aoj-itp2-11-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-itp/aoj-itp2-11-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-itp/aoj-itp2-11-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-1-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-1-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-1-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-1-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-1-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-1-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-1-d.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-1-d.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-1-e.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-1-e.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-2-a.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-2-a.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-2-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-2-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-2-c.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-2-c.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-2-d.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-2-d.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-2-e.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-2-e.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-ntl/aoj-ntl-2-f.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-ntl/aoj-ntl-2-f.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-0304.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-0304.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-0412.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-0412.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-1068.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-1068.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-1130-DG-bfs.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-1130-DG-bfs.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-1377.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-1377.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-1613.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-1613.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2171-bigrational.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2171-bigrational.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2171.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2171.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2821.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2821.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2891-2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2891-2.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2891.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2891.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2945-01bfs.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2945-01bfs.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2945-DG-01bfs.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2945-DG-01bfs.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2995-hashmap.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2995-hashmap.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-2995.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-2995.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-3022.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-3022.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-3086.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-3086.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-3277.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-3277.test.cpp -------------------------------------------------------------------------------- /verify/verify-aoj-other/aoj-3506.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-aoj-other/aoj-3506.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/arbitrary-modint.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/arbitrary-modint.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/barrett-reduction.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/barrett-reduction.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/bigint-gcd.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/bigint-gcd.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/bigint.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/bigint.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/bigint2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/bigint2.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/bigint3.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/bigint3.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/bigrational.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/bigrational.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/binomial-table.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/binomial-table.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/bitset-find-prev.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/bitset-find-prev.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/complex-fft.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/complex-fft.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/composite-exp.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/composite-exp.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/composition.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/composition.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/debug.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/debug.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/dijkstra.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/dijkstra.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/dual-fps.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/dual-fps.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/dynamic-diameter.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/dynamic-diameter.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/enumerate-convex.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/enumerate-convex.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/enumerate-quotient.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/enumerate-quotient.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/erasable-priority-queue.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/erasable-priority-queue.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/factorize.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/factorize.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/fast-bs.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/fast-bs.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/fast-inv-o1.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/fast-inv-o1.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/fast-inv.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/fast-inv.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/fft2d.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/fft2d.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/fps-sparse.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/fps-sparse.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/fps.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/fps.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/garner-bigint.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/garner-bigint.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/garner.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/garner.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/gauss-elimination.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/gauss-elimination.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/geometry.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/geometry.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/hashmap.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/hashmap.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/hashset.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/hashset.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/inner-hash.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/inner-hash.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/int-div.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/int-div.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/internal-math.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/internal-math.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/internal-type-traits.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/internal-type-traits.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/interval-union.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/interval-union.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/inverse-matrix.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/inverse-matrix.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/karatsuba.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/karatsuba.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/lazyseg-bsearch.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/lazyseg-bsearch.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/lazyseg-setval-2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/lazyseg-setval-2.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/lazyseg-setval.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/lazyseg-setval.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/li-chao-tree-abstruct.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/li-chao-tree-abstruct.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/manacher.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/manacher.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/math-fast-2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/math-fast-2.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/math-fast.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/math-fast.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/math.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/math.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/mf.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/mf.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/modint-2-61m1.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/modint-2-61m1.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/modint.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/modint.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/multieval.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/multieval.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/multiplicative-function.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/multiplicative-function.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/multipoint-binomial-sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/multipoint-binomial-sum.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/nimber-to-field.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/nimber-to-field.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/nimber.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/nimber.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/ntt-64bit.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/ntt-64bit.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/orderedmap.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/orderedmap.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/osak.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/osak.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/p-recursive.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/p-recursive.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/parallel-union-find.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/parallel-union-find.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/polynomial-matrix-prod.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/polynomial-matrix-prod.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/primality-test.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/primality-test.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/primitive-root.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/primitive-root.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/radix-heap.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/radix-heap.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/radix-sort.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/radix-sort.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/rational-number.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/rational-number.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/rbst-segment-tree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/rbst-segment-tree.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/rbst-sequence.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/rbst-sequence.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/relaxed-convolution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/relaxed-convolution.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/rerooting.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/rerooting.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/run-length-encoding.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/run-length-encoding.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/sa-manager.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/sa-manager.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/segment-set.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/segment-set.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/segment-tree-beats.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/segment-tree-beats.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/semiring.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/semiring.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/set-function.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/set-function.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/simulated-annealing.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/simulated-annealing.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/sparse-table.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/sparse-table.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/stirling-matrix.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/stirling-matrix.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/strassen.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/strassen.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/string-search.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/string-search.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/sum-of-mf.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/sum-of-mf.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/template.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/template.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/tree-path.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/tree-path.test.cpp -------------------------------------------------------------------------------- /verify/verify-unit-test/wavelet-matrix.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-unit-test/wavelet-matrix.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-binary-trie.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-binary-trie.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-hashmap.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-hashmap.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-lazysegtree-2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-lazysegtree-2.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-lazysegtree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-lazysegtree.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-line-add-get-min.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-line-add-get-min.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-orderedmap.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-orderedmap.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-persistent-queue.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-persistent-queue.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-rectangle-sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-rectangle-sum.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-segtree-beats.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-segtree-beats.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-static-rmq.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-static-rmq.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ds/yosupo-swag.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ds/yosupo-swag.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-composition-fast.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-composition-fast.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-composition.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-composition.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-exp-arb.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-exp-arb.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-exp-ofps.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-exp-ofps.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-exp.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-exp.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-factorial.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-factorial.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-interpolation.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-interpolation.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-inv-arb.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-inv-arb.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-inv-ofps.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-inv-ofps.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-inv.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-inv.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-log-arb.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-log-arb.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-log.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-log.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-multieval-fast.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-multieval-fast.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-multieval.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-multieval.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-pow-arb.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-pow-arb.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-pow.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-pow.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-sparse-exp.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-sparse-exp.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-sparse-inv.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-sparse-inv.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-sparse-log.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-sparse-log.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-sparse-pow.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-sparse-pow.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-sqrt.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-sqrt.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-stirling-1st-row.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-stirling-1st-row.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-stirling-1st.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-stirling-1st.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-stirling-2nd-row.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-stirling-2nd-row.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-stirling-2nd.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-stirling-2nd.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-sum-of-exp-poly.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-sum-of-exp-poly.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-fps/yosupo-taylor-shift.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-fps/yosupo-taylor-shift.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-graph/yosupo-cartesian.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-graph/yosupo-cartesian.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-graph/yosupo-diameter.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-graph/yosupo-diameter.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-graph/yosupo-directed-mst.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-graph/yosupo-directed-mst.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-graph/yosupo-jump-on-tree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-graph/yosupo-jump-on-tree.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-graph/yosupo-scc-atcoder.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-graph/yosupo-scc-atcoder.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-graph/yosupo-shortest-path.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-graph/yosupo-shortest-path.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-graph/yosupo-tree-hash.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-graph/yosupo-tree-hash.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-graph/yosupo-two-edge-cc.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-graph/yosupo-two-edge-cc.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-addition-of-hex.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-addition-of-hex.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-counting-primes.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-counting-primes.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-determinant.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-determinant.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-division-of-hex.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-division-of-hex.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-factorization.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-factorization.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-gcd-convolution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-gcd-convolution.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-inverse-matrix.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-inverse-matrix.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-kth-root-mod.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-kth-root-mod.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-lcm-convolution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-lcm-convolution.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-linear-equation.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-linear-equation.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-mod-log.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-mod-log.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-mod-sqrt.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-mod-sqrt.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-nim-product.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-nim-product.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-pow-of-matrix-2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-pow-of-matrix-2.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-pow-of-matrix.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-pow-of-matrix.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-primality-test.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-primality-test.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-prime-table.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-prime-table.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-primitive-root.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-primitive-root.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-rank-of-matrix.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-rank-of-matrix.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-sum-of-floor.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-sum-of-floor.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-sum-of-totient.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-sum-of-totient.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-tetration-mod.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-tetration-mod.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-two-sat-atcoder.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-two-sat-atcoder.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-two-sat.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-two-sat.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-math/yosupo-two-square-sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-math/yosupo-two-square-sum.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-ntt/yosupo-convolution-ntt.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-ntt/yosupo-convolution-ntt.test.cpp -------------------------------------------------------------------------------- /verify/verify-yosupo-other/yosupo-a-plus-b.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yosupo-other/yosupo-a-plus-b.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0002.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0002.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0102.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0102.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0103.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0103.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0117.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0117.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0125.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0125.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0214.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0214.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0215-nth-term.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0215-nth-term.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0215.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0215.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0303.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0303.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0361.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0361.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0430-2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0430-2.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0430.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0430.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0502-base64.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0502-base64.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0502.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0502.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0697.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0697.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0703.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0703.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0704.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0704.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0705.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0705.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0720.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0720.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0768.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0768.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0789.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0789.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0879.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0879.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0880.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0880.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0886.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0886.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0890.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0890.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0896.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0896.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0952.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0952.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0963-circular.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0963-circular.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-0963.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-0963.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1080.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1080.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1112-sparse.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1112-sparse.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1112.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1112.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1115.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1115.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1145-frac.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1145-frac.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1145.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1145.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1170-divide-interval.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1170-divide-interval.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1170.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1170.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1220.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1220.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1254-2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1254-2.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1254.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1254.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1269.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1269.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1283.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1283.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1303.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1303.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1320.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1320.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1323.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1323.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1326.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1326.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1340-bitmatrix.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1340-bitmatrix.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1340-semiring.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1340-semiring.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1460.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1460.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1467-weighted.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1467-weighted.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1467.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1467.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1504.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1504.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1510.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1510.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1533.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1533.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1775.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1775.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1777.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1777.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1778.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1778.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1781.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1781.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1783.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1783.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1786.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1786.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1787.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1787.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1789.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1789.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1875.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1875.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1939-2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1939-2.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1939-sparse-pow.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1939-sparse-pow.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1939.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1939.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-1976.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-1976.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2012.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2012.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2231.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2231.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2262.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2262.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2266.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2266.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2281.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2281.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2333.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2333.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2360.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2360.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2580.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2580.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2588.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2588.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2661.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2661.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2677.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2677.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-2883.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-2883.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-3024.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-3024.test.cpp -------------------------------------------------------------------------------- /verify/verify-yuki/yuki-helloworld.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaanNyaan/library/HEAD/verify/verify-yuki/yuki-helloworld.test.cpp --------------------------------------------------------------------------------