├── 2sat.cpp ├── README.md ├── Stanford ├── geometry.cpp └── push_relabel.cpp ├── aho_corasick.cpp ├── berlekamp_massey.cpp ├── biconnected.cpp ├── bipartite_match.cpp ├── centroid.cpp ├── dynamic_hull.cpp ├── euler_tour_tree.cpp ├── eval_expr.cpp ├── fast_fft.cpp ├── fast_segm_tree.cpp ├── fft.cpp ├── frac_bin_search.cpp ├── gauss.cpp ├── geometry.cpp ├── heavy_path.cpp ├── karatsuba.cpp ├── light_treap.cpp ├── linear_convex_set.cpp ├── manacher.cpp ├── maxflow_matrix.cpp ├── maxflow_mincost.cpp ├── maxflow_mincost_matrix.cpp ├── modops.cpp ├── modops2.cpp ├── ntt_helper.cpp ├── palindromic_tree.cpp ├── pbds_order_statistic.cpp ├── segm_tree.cpp ├── strongly_connected.cpp ├── suffix_arrays.cpp ├── suffix_automaton.cpp └── treap_full.cpp /2sat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/2sat.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/README.md -------------------------------------------------------------------------------- /Stanford/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/Stanford/geometry.cpp -------------------------------------------------------------------------------- /Stanford/push_relabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/Stanford/push_relabel.cpp -------------------------------------------------------------------------------- /aho_corasick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/aho_corasick.cpp -------------------------------------------------------------------------------- /berlekamp_massey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/berlekamp_massey.cpp -------------------------------------------------------------------------------- /biconnected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/biconnected.cpp -------------------------------------------------------------------------------- /bipartite_match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/bipartite_match.cpp -------------------------------------------------------------------------------- /centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/centroid.cpp -------------------------------------------------------------------------------- /dynamic_hull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/dynamic_hull.cpp -------------------------------------------------------------------------------- /euler_tour_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/euler_tour_tree.cpp -------------------------------------------------------------------------------- /eval_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/eval_expr.cpp -------------------------------------------------------------------------------- /fast_fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/fast_fft.cpp -------------------------------------------------------------------------------- /fast_segm_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/fast_segm_tree.cpp -------------------------------------------------------------------------------- /fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/fft.cpp -------------------------------------------------------------------------------- /frac_bin_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/frac_bin_search.cpp -------------------------------------------------------------------------------- /gauss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/gauss.cpp -------------------------------------------------------------------------------- /geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/geometry.cpp -------------------------------------------------------------------------------- /heavy_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/heavy_path.cpp -------------------------------------------------------------------------------- /karatsuba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/karatsuba.cpp -------------------------------------------------------------------------------- /light_treap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/light_treap.cpp -------------------------------------------------------------------------------- /linear_convex_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/linear_convex_set.cpp -------------------------------------------------------------------------------- /manacher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/manacher.cpp -------------------------------------------------------------------------------- /maxflow_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/maxflow_matrix.cpp -------------------------------------------------------------------------------- /maxflow_mincost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/maxflow_mincost.cpp -------------------------------------------------------------------------------- /maxflow_mincost_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/maxflow_mincost_matrix.cpp -------------------------------------------------------------------------------- /modops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/modops.cpp -------------------------------------------------------------------------------- /modops2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/modops2.cpp -------------------------------------------------------------------------------- /ntt_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/ntt_helper.cpp -------------------------------------------------------------------------------- /palindromic_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/palindromic_tree.cpp -------------------------------------------------------------------------------- /pbds_order_statistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/pbds_order_statistic.cpp -------------------------------------------------------------------------------- /segm_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/segm_tree.cpp -------------------------------------------------------------------------------- /strongly_connected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/strongly_connected.cpp -------------------------------------------------------------------------------- /suffix_arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/suffix_arrays.cpp -------------------------------------------------------------------------------- /suffix_automaton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/suffix_automaton.cpp -------------------------------------------------------------------------------- /treap_full.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bicsi/code_snippets/HEAD/treap_full.cpp --------------------------------------------------------------------------------