├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── sanitize.yml │ └── verify.yml ├── .gitignore ├── .gitignore_gen.sh ├── .verify-helper ├── config.toml ├── docs │ └── _config.yml ├── local.toml ├── sanitize.toml ├── timestamps.local.json.20201106 ├── timestamps.local.json.20210324 └── timestamps.remote.json ├── README.md ├── algorithm ├── knuthyao.cpp ├── largestrectangle.cpp ├── mo.cpp ├── monotoneminima.cpp ├── offlineonline.cpp ├── optimalbinarytree.cpp ├── parallelbinarysearch.cpp └── partialsum.cpp ├── bbst ├── pb_ds_tree.cpp └── rbst │ ├── data │ ├── array.cpp │ ├── dual.cpp │ ├── lazy.cpp │ └── ushi.cpp │ ├── impl │ ├── basic.cpp │ └── persistent.cpp │ └── rbst.cpp ├── bflow └── capacityscaling.cpp ├── clean.sh ├── combinatorics ├── bell.cpp ├── bernoulli.cpp ├── enumeration.cpp ├── partition.cpp ├── partitiontable.cpp ├── stirling1st.cpp ├── stirling2nd.cpp └── surjection.cpp ├── convexhulltrick ├── convexhulltrick.cpp ├── linecontainer.cpp ├── segmentcontainer.cpp └── withindex.cpp ├── convolution ├── arbitrarymod.cpp ├── bitwise │ ├── and.cpp │ ├── fwht.cpp │ ├── or.cpp │ └── xor.cpp ├── convolution2D.cpp ├── divisor.cpp ├── fastfouriertransform.cpp ├── garner.cpp ├── naive.cpp └── numbertheoretictransform.cpp ├── datastructure ├── BIT2D.cpp ├── absolutesum.cpp ├── binaryindexedtree.cpp ├── binarytrie.cpp ├── bitvector.cpp ├── cartesiantree.cpp ├── cumulativesum.cpp ├── disjointsparsetable.cpp ├── kdtree.cpp ├── pb_ds_cc_hash_table.cpp ├── prioritysum.cpp ├── quickfind.cpp ├── radixheap.cpp ├── rangeslide.cpp ├── rotcev.cpp ├── skewheap.cpp ├── slidingwindowaggregation.cpp ├── slope.cpp ├── sparsetable.cpp ├── unionfind.cpp ├── waveletmatrix.cpp └── weightedunionfind.cpp ├── docs ├── bflow │ └── capacityscaling.md ├── datastructure │ ├── binaryindexedtree.md │ └── waveletmatrix.md ├── graph │ └── rangetorange.md ├── maxflow │ ├── dinic.md │ ├── fordfulkerson.md │ ├── leastflow.md │ └── twocommodity.md ├── mincostflow │ ├── negativeedge.md │ └── primaldual.md ├── segtree │ └── basic │ │ └── lazy.md ├── string │ ├── longestcommonprefix.md │ └── suffixarray.md ├── test │ ├── aoj │ │ ├── 0438.test.md │ │ ├── 0563.test.md │ │ ├── 1549.test.md │ │ ├── 1595.toptree.test.md │ │ ├── 2290.test.md │ │ ├── 2313.test.md │ │ ├── 2636.test.md │ │ ├── 2667.test.md │ │ ├── 2679.test.md │ │ ├── 2711.test.md │ │ ├── 2725.linecontainer.test.md │ │ ├── 2890.test.md │ │ ├── 3069.test.md │ │ ├── 3112.test.md │ │ ├── 3117.test.md │ │ ├── 3143.test.md │ │ ├── DSL_2_F.test.md │ │ ├── DSL_2_H.test.md │ │ └── DSL_2_I.test.md │ ├── yosupo │ │ └── range_kth_smallest.test.md │ └── yukicoder │ │ ├── 1732.test.md │ │ ├── 1937.test.md │ │ ├── 3267.test.md │ │ ├── 3453.test.md │ │ └── 7107.test.md ├── toptree │ └── toptree.md └── tree │ ├── ahu.md │ ├── auxiliarytree.md │ ├── heavylightdecomposition.md │ ├── rerooting.md │ └── sack.md ├── formalpowerseries ├── 998244353.cpp ├── base.cpp ├── diff.cpp ├── div.cpp ├── exp.cpp ├── integral.cpp ├── inv.cpp ├── log.cpp ├── mod.cpp ├── pow.cpp ├── shift.cpp └── sqrt.cpp ├── geometry ├── 3D │ └── geometry3D.cpp ├── argsort.cpp ├── geometry.cpp └── projectilemotion.cpp ├── graph ├── arborescence_edmond.cpp ├── arborescence_tarjan.cpp ├── bellmanford.cpp ├── bfs.cpp ├── bipartitedecomposition.cpp ├── chromatic.cpp ├── cycle.cpp ├── dijkstra.cpp ├── dominatortree.cpp ├── dynamicconnectivity.cpp ├── girth.cpp ├── grid.cpp ├── independentset.cpp ├── kruskal.cpp ├── lowlink.cpp ├── manhattanmst.cpp ├── multipleeuleriantrail.cpp ├── nicetree.cpp ├── rangetorange.cpp ├── semikernel.cpp ├── stronglyconnectedcomponent.cpp ├── topologicalsort.cpp ├── triangle.cpp ├── twoedgeconnectedcomponents.cpp ├── twosatisfiability.cpp └── voronoiminimumspanningtree.cpp ├── heuristic ├── timer.cpp └── xorshift.cpp ├── includes └── formalpowerseries.h ├── io ├── precision.cpp ├── single.cpp ├── space.cpp ├── tuple.cpp └── yesno.cpp ├── leetcode └── treenode.cpp ├── linearalgebra ├── binarymatrix.cpp ├── matrix.cpp ├── squarematrix.cpp └── tree_theorem.cpp ├── linkcuttree ├── base.cpp ├── farthest.cpp ├── path.cpp └── subtree.cpp ├── matching ├── bipartite.cpp ├── hopcroft_karp.cpp └── tutte.cpp ├── math ├── affine.cpp ├── bostanmori.cpp ├── carmichael.cpp ├── combination.cpp ├── convertbase.cpp ├── dual.cpp ├── enumerate_primes.cpp ├── extgcd.cpp ├── factorize.cpp ├── fraction.cpp ├── isprime.cpp ├── kitamasa.cpp ├── linearcongruence.cpp ├── linearfunction.cpp ├── moebius.cpp ├── quotients.cpp ├── sum_of_floor.cpp ├── sum_of_geometric_sequence.cpp ├── tetrahedra.cpp ├── totient.cpp ├── totient_table.cpp └── twoway.cpp ├── maxflow ├── dinic.cpp ├── fordfulkerson.cpp ├── leastflow.cpp └── twocommodity.cpp ├── mincostflow ├── negativeedge.cpp └── primaldual.cpp ├── mod ├── factorial.cpp ├── inverse.cpp ├── log.cpp ├── mint.cpp ├── montmort.cpp ├── order.cpp ├── pow.cpp ├── rint.cpp ├── sqrt.cpp └── tetration.cpp ├── polynomial ├── berlekampmassey.cpp ├── hash.cpp ├── interpolate.cpp ├── lagrangeinterpolation.cpp ├── multieval.cpp ├── polynomial.cpp └── recursivesequence.cpp ├── segtree ├── 2d │ └── ushi.cpp ├── basic │ ├── dual.cpp │ ├── lazy.cpp │ └── ushi.cpp ├── count │ ├── dynamic_offline.cpp │ └── static.cpp ├── persistent │ └── ushi.cpp └── types │ ├── offline.cpp │ └── online.cpp ├── string ├── ahocorasick.cpp ├── editdistance.cpp ├── knuthmorrispratt.cpp ├── longestcommonprefix.cpp ├── longestcommonsubstring.cpp ├── manacher.cpp ├── morrispratt.cpp ├── palindromictree.cpp ├── parse.cpp ├── rectanglehash.cpp ├── rollinghash.cpp ├── run.cpp ├── split.cpp ├── suffixarray.cpp ├── trie.cpp └── zalgorithm.cpp ├── test ├── aoj │ ├── 0109.test.cpp │ ├── 0168.test.cpp │ ├── 0233.test.cpp │ ├── 0294.test.cpp │ ├── 0314.test.cpp │ ├── 0343.test.cpp │ ├── 0367.linkcuttree.test.cpp │ ├── 0367.test.cpp │ ├── 0367.toptree.test.cpp │ ├── 0377.test.cpp │ ├── 0391.test.cpp │ ├── 0402.test.cpp │ ├── 0403.test.cpp │ ├── 0415.test.cpp │ ├── 0422.test.cpp │ ├── 0423.test.cpp │ ├── 0424.test.cpp │ ├── 0425.test.cpp │ ├── 0437.test.cpp │ ├── 0438.test.cpp │ ├── 0439.test.cpp │ ├── 0502.test.cpp │ ├── 0558.test.cpp │ ├── 0563.test.cpp │ ├── 0596.test.cpp │ ├── 0613.test.cpp │ ├── 1069.test.cpp │ ├── 1197.test.cpp │ ├── 1254.test.cpp │ ├── 1293.test.cpp │ ├── 1300.test.cpp │ ├── 1308.test.cpp │ ├── 1312.test.cpp │ ├── 1328.test.cpp │ ├── 1338.test.cpp │ ├── 1508.test.cpp │ ├── 1549.test.cpp │ ├── 1579.test.cpp │ ├── 1595.linkcuttree.test.cpp │ ├── 1595.test.cpp │ ├── 1595.toptree.test.cpp │ ├── 1599.test.cpp │ ├── 1607.test.cpp │ ├── 1613.test.cpp │ ├── 1615.test.cpp │ ├── 1630.test.cpp │ ├── 1642.test.cpp │ ├── 2060.test.cpp │ ├── 2187.test.cpp │ ├── 2212.test.cpp │ ├── 2222.test.cpp │ ├── 2230.test.cpp │ ├── 2235.test.cpp │ ├── 2257.test.cpp │ ├── 2270.test.cpp │ ├── 2286.test.cpp │ ├── 2290.test.cpp │ ├── 2292.test.cpp │ ├── 2294.test.cpp │ ├── 2308.test.cpp │ ├── 2309.tarjan.test.cpp │ ├── 2309.test.cpp │ ├── 2313.test.cpp │ ├── 2324.test.cpp │ ├── 2328.test.cpp │ ├── 2359.test.cpp │ ├── 2370.test.cpp │ ├── 2397.test.cpp │ ├── 2405.test.cpp │ ├── 2415.knuthyao.test.cpp │ ├── 2415.test.cpp │ ├── 2432.ignore.cpp │ ├── 2444.test.cpp │ ├── 2446.test.cpp │ ├── 2450.linkcuttree.test.cpp │ ├── 2450.test.cpp │ ├── 2488.test.cpp │ ├── 2513.test.cpp │ ├── 2560.test.cpp │ ├── 2563.test.cpp │ ├── 2603.test.cpp │ ├── 2624.test.cpp │ ├── 2627.test.cpp │ ├── 2636.test.cpp │ ├── 2644.test.cpp │ ├── 2646.test.cpp │ ├── 2647.test.cpp │ ├── 2659.test.cpp │ ├── 2667.test.cpp │ ├── 2674.count.test.cpp │ ├── 2674.test.cpp │ ├── 2679.test.cpp │ ├── 2687.test.cpp │ ├── 2711.test.cpp │ ├── 2720.test.cpp │ ├── 2725.linecontainer.test.cpp │ ├── 2725.test.cpp │ ├── 2736.test.cpp │ ├── 2790.test.cpp │ ├── 2842.BIT2D.test.cpp │ ├── 2842.test.cpp │ ├── 2871.test.cpp │ ├── 2872.test.cpp │ ├── 2890.test.cpp │ ├── 2891.test.cpp │ ├── 2934.test.cpp │ ├── 2948.test.cpp │ ├── 2951.test.cpp │ ├── 2959.test.cpp │ ├── 2968.test.cpp │ ├── 2969.test.cpp │ ├── 2970.test.cpp │ ├── 2971.test.cpp │ ├── 2975.test.cpp │ ├── 2977.test.cpp │ ├── 2979.test.cpp │ ├── 2981.test.cpp │ ├── 2983.test.cpp │ ├── 2985.garner.test.cpp │ ├── 2985.test.cpp │ ├── 2995.test.cpp │ ├── 3024.test.cpp │ ├── 3033.test.cpp │ ├── 3035.test.cpp │ ├── 3037.test.cpp │ ├── 3047.test.cpp │ ├── 3053.test.cpp │ ├── 3058.test.cpp │ ├── 3062.test.cpp │ ├── 3063.test.cpp │ ├── 3069.test.cpp │ ├── 3072.test.cpp │ ├── 3073.test.cpp │ ├── 3074.test.cpp │ ├── 3081.test.cpp │ ├── 3084.test.cpp │ ├── 3086.test.cpp │ ├── 3102.test.cpp │ ├── 3112.test.cpp │ ├── 3117.test.cpp │ ├── 3120.test.cpp │ ├── 3138.test.cpp │ ├── 3142.test.cpp │ ├── 3143.test.cpp │ ├── 3148.test.cpp │ ├── 3168.test.cpp │ ├── 3179.test.cpp │ ├── 3183.test.cpp │ ├── 3198.test.cpp │ ├── 3208.test.cpp │ ├── 3213.test.cpp │ ├── 3506.test.cpp │ ├── 3518.test.cpp │ ├── ALDS1_10_C.test.cpp │ ├── ALDS1_14_B.knuthmorrispratt.test.cpp │ ├── ALDS1_14_B.test.cpp │ ├── ALDS1_14_C.test.cpp │ ├── ALDS1_15_B.test.cpp │ ├── ALDS1_1_C.test.cpp │ ├── ALDS1_5_D.test.cpp │ ├── ALDS1_9_C.test.cpp │ ├── DPL_1_E.test.cpp │ ├── DPL_3_B.test.cpp │ ├── DPL_3_C.test.cpp │ ├── DPL_5_A.test.cpp │ ├── DPL_5_B.test.cpp │ ├── DPL_5_C.test.cpp │ ├── DPL_5_D.test.cpp │ ├── DPL_5_E.test.cpp │ ├── DPL_5_F.test.cpp │ ├── DPL_5_G.test.cpp │ ├── DPL_5_H.test.cpp │ ├── DPL_5_I.test.cpp │ ├── DPL_5_J.test.cpp │ ├── DPL_5_K.test.cpp │ ├── DPL_5_L.test.cpp │ ├── DSL_1_A.quickfind.test.cpp │ ├── DSL_1_A.test.cpp │ ├── DSL_1_B.test.cpp │ ├── DSL_2_B.test.cpp │ ├── DSL_2_C.test.cpp │ ├── DSL_2_D.test.cpp │ ├── DSL_2_E.test.cpp │ ├── DSL_2_F.bbst.test.cpp │ ├── DSL_2_F.test.cpp │ ├── DSL_2_G.bbst.test.cpp │ ├── DSL_2_H.bbst.test.cpp │ ├── DSL_2_H.test.cpp │ ├── DSL_2_I.bbst.test.cpp │ ├── DSL_2_I.test.cpp │ ├── DSL_3_D.cartesiantree.test.cpp │ ├── DSL_3_D.disjointsparsetable.test.cpp │ ├── DSL_3_D.slidingwindowaggregation.test.cpp │ ├── DSL_3_D.sparsetable.test.cpp │ ├── DSL_3_D.test.cpp │ ├── GRL_1_A.test.cpp │ ├── GRL_1_B.test.cpp │ ├── GRL_2_A.test.cpp │ ├── GRL_2_B.tarjan.test.cpp │ ├── GRL_2_B.test.cpp │ ├── GRL_3_A.test.cpp │ ├── GRL_3_B.test.cpp │ ├── GRL_4_B.ignore.cpp │ ├── GRL_5_A.linkcuttree.test.cpp │ ├── GRL_5_A.test.cpp │ ├── GRL_5_C.lca.test.cpp │ ├── GRL_5_C.test.cpp │ ├── GRL_5_D.linkcuttree.test.cpp │ ├── GRL_5_D.test.cpp │ ├── GRL_5_E.linkcuttree.test.cpp │ ├── GRL_6_A.test.cpp │ ├── GRL_6_B.test.cpp │ ├── GRL_7_A.test.cpp │ ├── ITP1_11_A.test.cpp │ ├── ITP1_11_B.test.cpp │ ├── ITP1_11_C.test.cpp │ ├── ITP1_11_D.test.cpp │ ├── NTL_1_A.test.cpp │ ├── NTL_1_B.test.cpp │ ├── NTL_1_D.test.cpp │ ├── NTL_1_E.test.cpp │ ├── NTL_2_A.test.cpp │ ├── NTL_2_B.test.cpp │ ├── NTL_2_C.test.cpp │ ├── NTL_2_D.test.cpp │ ├── NTL_2_E.test.cpp │ ├── NTL_2_F.test.cpp │ └── geometry │ │ ├── 2334.test.cpp │ │ ├── 2448.test.cpp │ │ ├── 2454.test.cpp │ │ ├── 3049.test.cpp │ │ ├── 3056.test.cpp │ │ ├── CGL_1_A.test.cpp │ │ ├── CGL_1_B.test.cpp │ │ ├── CGL_1_C.test.cpp │ │ ├── CGL_2_A.test.cpp │ │ ├── CGL_2_B.test.cpp │ │ ├── CGL_2_C.test.cpp │ │ ├── CGL_2_D.test.cpp │ │ ├── CGL_3_A.test.cpp │ │ ├── CGL_3_B.test.cpp │ │ ├── CGL_3_C.test.cpp │ │ ├── CGL_4_A.test.cpp │ │ ├── CGL_4_B.test.cpp │ │ ├── CGL_4_C.test.cpp │ │ ├── CGL_5_A.test.cpp │ │ ├── CGL_6_A.test.cpp │ │ ├── CGL_7_A.test.cpp │ │ ├── CGL_7_D.test.cpp │ │ ├── CGL_7_E.test.cpp │ │ ├── CGL_7_F.test.cpp │ │ ├── CGL_7_G.test.cpp │ │ ├── CGL_7_H.test.cpp │ │ └── CGL_7_I.test.cpp ├── yosupo │ ├── assignment.test.cpp │ ├── associative_array.test.cpp │ ├── bernoulli_number.test.cpp │ ├── bipartitematching.test.cpp │ ├── bitwise_and_convolution.test.cpp │ ├── bitwise_xor_convolution.test.cpp │ ├── cartesian_tree.test.cpp │ ├── convolution_mod.test.cpp │ ├── convolution_mod_1000000007.garner.test.cpp │ ├── convolution_mod_1000000007.test.cpp │ ├── cycle_detection.test.cpp │ ├── discrete_logarithm_mod.test.cpp │ ├── dominatortree.test.cpp │ ├── dynamic_sequence_range_affine_range_sum.test.cpp │ ├── dynamic_tree_vertex_add_path_sum.test.cpp │ ├── dynamic_tree_vertex_add_subtree_sum.test.cpp │ ├── dynamic_tree_vertex_add_subtree_sum.toptree.test.cpp │ ├── dynamic_tree_vertex_set_path_composite.test.cpp │ ├── dynamic_tree_vertex_set_path_composite.toptree.test.cpp │ ├── enumerate_primes.test.cpp │ ├── enumerate_triangles.test.cpp │ ├── exp_of_formal_power_series.test.cpp │ ├── find_linear_recurrence.test.cpp │ ├── frequency_table_of_tree_distance.test.cpp │ ├── inv_of_formal_power_series.test.cpp │ ├── kth_root_integer.test.cpp │ ├── kth_term_of_linearly_recurrent_sequence.test.cpp │ ├── lca.linkcuttree.test.cpp │ ├── lca.test.cpp │ ├── line_add_get_min.test.cpp │ ├── log_of_formal_power_series.test.cpp │ ├── manhattanmst.test.cpp │ ├── many_aplusb.test.cpp │ ├── matrix_det.test.cpp │ ├── maximum_independent_set.test.cpp │ ├── min_cost_b_flow.test.cpp │ ├── montmort_number_mod.test.cpp │ ├── multipoint_evaluation.test.cpp │ ├── number_of_substrings.test.cpp │ ├── partition_function.test.cpp │ ├── persistent_queue.test.cpp │ ├── point_add_range_sum.test.cpp │ ├── point_add_rectangle_sum.test.cpp │ ├── point_set_range_composite.test.cpp │ ├── polynomial_interpolation.test.cpp │ ├── polynomial_taylor_shift.test.cpp │ ├── pow_of_formal_power_series.test.cpp │ ├── queue_operate_all_composite.test.cpp │ ├── range_affine_range_sum.test.cpp │ ├── range_kth_smallest.test.cpp │ ├── rectangle_sum.test.cpp │ ├── runenumerate.test.cpp │ ├── scc.test.cpp │ ├── segment_add_get_min.test.cpp │ ├── set_xor_min.test.cpp │ ├── sharp_p_subset_sum.test.cpp │ ├── shortest_path.test.cpp │ ├── sort_points_by_argument.test.cpp │ ├── sqrt_mod.test.cpp │ ├── sqrt_of_formal_power_series.test.cpp │ ├── static_range_frequency.test.cpp │ ├── static_range_inversions_query.test.cpp │ ├── static_range_sum.test.cpp │ ├── staticrmq.disjointsparsetable.test.cpp │ ├── staticrmq.sparsetable.test.cpp │ ├── stirling_number_of_the_first_kind.test.cpp │ ├── stirling_number_of_the_second_kind.test.cpp │ ├── subset_convolution.test.cpp │ ├── suffixarray.test.cpp │ ├── sum_of_floor_of_linear.test.cpp │ ├── tetration_mod.test.cpp │ ├── tree_decomposition_width_2.test.cpp │ ├── tree_diameter.test.cpp │ ├── two_edge_connected_components.test.cpp │ ├── two_sat.test.cpp │ ├── unionfind.test.cpp │ ├── vertex_add_path_sum.test.cpp │ ├── vertex_add_subtree_sum.test.cpp │ └── zalgorithm.test.cpp └── yukicoder │ ├── 0022.test.cpp │ ├── 0104.test.cpp │ ├── 0143.test.cpp │ ├── 0206.test.cpp │ ├── 0222.test.cpp │ ├── 0399.test.cpp │ ├── 0444.test.cpp │ ├── 0472.test.cpp │ ├── 0771.test.cpp │ ├── 0831.test.cpp │ ├── 1013.test.cpp │ ├── 1504.test.cpp │ ├── 1580.test.cpp │ ├── 1665.test.cpp │ ├── 1732.test.cpp │ ├── 1923.test.cpp │ ├── 1937.test.cpp │ ├── 1948.test.cpp │ ├── 1950.test.cpp │ ├── 1973.test.cpp │ ├── 2063.test.cpp │ ├── 2085.test.cpp │ ├── 2113.test.cpp │ ├── 2125.test.cpp │ ├── 2147.test.cpp │ ├── 2520.test.cpp │ ├── 2587.test.cpp │ ├── 2600.test.cpp │ ├── 2744.test.cpp │ ├── 2772.test.cpp │ ├── 3211.test.cpp │ ├── 3227.test.cpp │ ├── 3267.test.cpp │ ├── 3277.test.cpp │ ├── 3354.test.cpp │ ├── 3405.test.cpp │ ├── 3407.test.cpp │ ├── 3453.test.cpp │ ├── 3592.test.cpp │ ├── 3912.test.cpp │ ├── 3961.test.cpp │ ├── 4072.test.cpp │ ├── 4117.test.cpp │ ├── 4271.avx2.test.cpp │ ├── 4271.test.cpp │ ├── 4387.test.cpp │ ├── 4474.test.cpp │ ├── 4569.test.cpp │ ├── 4706.test.cpp │ ├── 4778.test.cpp │ ├── 4852.test.cpp │ ├── 4862.test.cpp │ ├── 4872.test.cpp │ ├── 4918.test.cpp │ ├── 4941.test.cpp │ ├── 5011.test.cpp │ ├── 5025.test.cpp │ ├── 5061.test.cpp │ ├── 5223.test.cpp │ ├── 5633.test.cpp │ ├── 6680.test.cpp │ ├── 7107.test.cpp │ └── 9158.test.cpp ├── tools ├── all_permutations.cpp ├── avx2.cpp ├── bigint.cpp ├── cc_hash.cpp ├── chminmax.cpp ├── debug.cpp ├── defaultdict.cpp ├── dice.cpp ├── drop.cpp ├── fastio.cpp ├── fixpoint.cpp ├── gridbfs.cpp ├── int128.cpp ├── iskado.cpp └── trio.cpp ├── toptree ├── base.cpp ├── distancesum.cpp ├── farthest.cpp ├── steiner.cpp └── toptree.cpp ├── tree ├── ahu.cpp ├── auxiliarytree.cpp ├── centroid.cpp ├── construct_from_distances_to_farthest_vertex.cpp ├── diameterforedge.cpp ├── diameterforvertex.cpp ├── eulertourforbfs.cpp ├── eulertourforedge.cpp ├── eulertourforvertex.cpp ├── heavylightdecomposition.cpp ├── lca.cpp ├── levelancestor.cpp ├── lowestcommonancestor.cpp ├── mo_on_tree.cpp ├── rerooting.cpp └── sack.cpp └── vector ├── compress.cpp ├── fusion.cpp ├── identity.cpp ├── inversion.cpp ├── multi.cpp ├── near.cpp ├── powers.cpp ├── reversed.cpp ├── runlength.cpp ├── sorted.cpp └── zip.cpp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/sanitize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.github/workflows/sanitize.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.gitignore_gen.sh -------------------------------------------------------------------------------- /.verify-helper/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.verify-helper/config.toml -------------------------------------------------------------------------------- /.verify-helper/docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.verify-helper/docs/_config.yml -------------------------------------------------------------------------------- /.verify-helper/local.toml: -------------------------------------------------------------------------------- 1 | [[languages.cpp.environments]] 2 | CXX = "g++" 3 | -------------------------------------------------------------------------------- /.verify-helper/sanitize.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.verify-helper/sanitize.toml -------------------------------------------------------------------------------- /.verify-helper/timestamps.local.json.20201106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.verify-helper/timestamps.local.json.20201106 -------------------------------------------------------------------------------- /.verify-helper/timestamps.local.json.20210324: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.verify-helper/timestamps.local.json.20210324 -------------------------------------------------------------------------------- /.verify-helper/timestamps.remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/.verify-helper/timestamps.remote.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/README.md -------------------------------------------------------------------------------- /algorithm/knuthyao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/algorithm/knuthyao.cpp -------------------------------------------------------------------------------- /algorithm/largestrectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/algorithm/largestrectangle.cpp -------------------------------------------------------------------------------- /algorithm/mo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/algorithm/mo.cpp -------------------------------------------------------------------------------- /algorithm/monotoneminima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/algorithm/monotoneminima.cpp -------------------------------------------------------------------------------- /algorithm/offlineonline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/algorithm/offlineonline.cpp -------------------------------------------------------------------------------- /algorithm/optimalbinarytree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/algorithm/optimalbinarytree.cpp -------------------------------------------------------------------------------- /algorithm/parallelbinarysearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/algorithm/parallelbinarysearch.cpp -------------------------------------------------------------------------------- /algorithm/partialsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/algorithm/partialsum.cpp -------------------------------------------------------------------------------- /bbst/pb_ds_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bbst/pb_ds_tree.cpp -------------------------------------------------------------------------------- /bbst/rbst/data/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bbst/rbst/data/array.cpp -------------------------------------------------------------------------------- /bbst/rbst/data/dual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bbst/rbst/data/dual.cpp -------------------------------------------------------------------------------- /bbst/rbst/data/lazy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bbst/rbst/data/lazy.cpp -------------------------------------------------------------------------------- /bbst/rbst/data/ushi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bbst/rbst/data/ushi.cpp -------------------------------------------------------------------------------- /bbst/rbst/impl/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bbst/rbst/impl/basic.cpp -------------------------------------------------------------------------------- /bbst/rbst/impl/persistent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bbst/rbst/impl/persistent.cpp -------------------------------------------------------------------------------- /bbst/rbst/rbst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bbst/rbst/rbst.cpp -------------------------------------------------------------------------------- /bflow/capacityscaling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/bflow/capacityscaling.cpp -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/clean.sh -------------------------------------------------------------------------------- /combinatorics/bell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/combinatorics/bell.cpp -------------------------------------------------------------------------------- /combinatorics/bernoulli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/combinatorics/bernoulli.cpp -------------------------------------------------------------------------------- /combinatorics/enumeration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/combinatorics/enumeration.cpp -------------------------------------------------------------------------------- /combinatorics/partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/combinatorics/partition.cpp -------------------------------------------------------------------------------- /combinatorics/partitiontable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/combinatorics/partitiontable.cpp -------------------------------------------------------------------------------- /combinatorics/stirling1st.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/combinatorics/stirling1st.cpp -------------------------------------------------------------------------------- /combinatorics/stirling2nd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/combinatorics/stirling2nd.cpp -------------------------------------------------------------------------------- /combinatorics/surjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/combinatorics/surjection.cpp -------------------------------------------------------------------------------- /convexhulltrick/convexhulltrick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convexhulltrick/convexhulltrick.cpp -------------------------------------------------------------------------------- /convexhulltrick/linecontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convexhulltrick/linecontainer.cpp -------------------------------------------------------------------------------- /convexhulltrick/segmentcontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convexhulltrick/segmentcontainer.cpp -------------------------------------------------------------------------------- /convexhulltrick/withindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convexhulltrick/withindex.cpp -------------------------------------------------------------------------------- /convolution/arbitrarymod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/arbitrarymod.cpp -------------------------------------------------------------------------------- /convolution/bitwise/and.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/bitwise/and.cpp -------------------------------------------------------------------------------- /convolution/bitwise/fwht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/bitwise/fwht.cpp -------------------------------------------------------------------------------- /convolution/bitwise/or.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/bitwise/or.cpp -------------------------------------------------------------------------------- /convolution/bitwise/xor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/bitwise/xor.cpp -------------------------------------------------------------------------------- /convolution/convolution2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/convolution2D.cpp -------------------------------------------------------------------------------- /convolution/divisor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/divisor.cpp -------------------------------------------------------------------------------- /convolution/fastfouriertransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/fastfouriertransform.cpp -------------------------------------------------------------------------------- /convolution/garner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/garner.cpp -------------------------------------------------------------------------------- /convolution/naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/naive.cpp -------------------------------------------------------------------------------- /convolution/numbertheoretictransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/convolution/numbertheoretictransform.cpp -------------------------------------------------------------------------------- /datastructure/BIT2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/BIT2D.cpp -------------------------------------------------------------------------------- /datastructure/absolutesum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/absolutesum.cpp -------------------------------------------------------------------------------- /datastructure/binaryindexedtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/binaryindexedtree.cpp -------------------------------------------------------------------------------- /datastructure/binarytrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/binarytrie.cpp -------------------------------------------------------------------------------- /datastructure/bitvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/bitvector.cpp -------------------------------------------------------------------------------- /datastructure/cartesiantree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/cartesiantree.cpp -------------------------------------------------------------------------------- /datastructure/cumulativesum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/cumulativesum.cpp -------------------------------------------------------------------------------- /datastructure/disjointsparsetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/disjointsparsetable.cpp -------------------------------------------------------------------------------- /datastructure/kdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/kdtree.cpp -------------------------------------------------------------------------------- /datastructure/pb_ds_cc_hash_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/pb_ds_cc_hash_table.cpp -------------------------------------------------------------------------------- /datastructure/prioritysum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/prioritysum.cpp -------------------------------------------------------------------------------- /datastructure/quickfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/quickfind.cpp -------------------------------------------------------------------------------- /datastructure/radixheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/radixheap.cpp -------------------------------------------------------------------------------- /datastructure/rangeslide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/rangeslide.cpp -------------------------------------------------------------------------------- /datastructure/rotcev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/rotcev.cpp -------------------------------------------------------------------------------- /datastructure/skewheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/skewheap.cpp -------------------------------------------------------------------------------- /datastructure/slidingwindowaggregation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/slidingwindowaggregation.cpp -------------------------------------------------------------------------------- /datastructure/slope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/slope.cpp -------------------------------------------------------------------------------- /datastructure/sparsetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/sparsetable.cpp -------------------------------------------------------------------------------- /datastructure/unionfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/unionfind.cpp -------------------------------------------------------------------------------- /datastructure/waveletmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/waveletmatrix.cpp -------------------------------------------------------------------------------- /datastructure/weightedunionfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/datastructure/weightedunionfind.cpp -------------------------------------------------------------------------------- /docs/bflow/capacityscaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/bflow/capacityscaling.md -------------------------------------------------------------------------------- /docs/datastructure/binaryindexedtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/datastructure/binaryindexedtree.md -------------------------------------------------------------------------------- /docs/datastructure/waveletmatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/datastructure/waveletmatrix.md -------------------------------------------------------------------------------- /docs/graph/rangetorange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/graph/rangetorange.md -------------------------------------------------------------------------------- /docs/maxflow/dinic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/maxflow/dinic.md -------------------------------------------------------------------------------- /docs/maxflow/fordfulkerson.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 最大流 (計算量が流量依存) 3 | documentation_of: //maxflow/fordfulkerson.cpp 4 | --- 5 | -------------------------------------------------------------------------------- /docs/maxflow/leastflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/maxflow/leastflow.md -------------------------------------------------------------------------------- /docs/maxflow/twocommodity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/maxflow/twocommodity.md -------------------------------------------------------------------------------- /docs/mincostflow/negativeedge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/mincostflow/negativeedge.md -------------------------------------------------------------------------------- /docs/mincostflow/primaldual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/mincostflow/primaldual.md -------------------------------------------------------------------------------- /docs/segtree/basic/lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/segtree/basic/lazy.md -------------------------------------------------------------------------------- /docs/string/longestcommonprefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/string/longestcommonprefix.md -------------------------------------------------------------------------------- /docs/string/suffixarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/string/suffixarray.md -------------------------------------------------------------------------------- /docs/test/aoj/0438.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/0438.test.md -------------------------------------------------------------------------------- /docs/test/aoj/0563.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/0563.test.md -------------------------------------------------------------------------------- /docs/test/aoj/1549.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/1549.test.md -------------------------------------------------------------------------------- /docs/test/aoj/1595.toptree.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/1595.toptree.test.md -------------------------------------------------------------------------------- /docs/test/aoj/2290.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/2290.test.md -------------------------------------------------------------------------------- /docs/test/aoj/2313.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/2313.test.md -------------------------------------------------------------------------------- /docs/test/aoj/2636.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/2636.test.md -------------------------------------------------------------------------------- /docs/test/aoj/2667.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/2667.test.md -------------------------------------------------------------------------------- /docs/test/aoj/2679.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/2679.test.md -------------------------------------------------------------------------------- /docs/test/aoj/2711.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/2711.test.md -------------------------------------------------------------------------------- /docs/test/aoj/2725.linecontainer.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/2725.linecontainer.test.md -------------------------------------------------------------------------------- /docs/test/aoj/2890.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/2890.test.md -------------------------------------------------------------------------------- /docs/test/aoj/3069.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/3069.test.md -------------------------------------------------------------------------------- /docs/test/aoj/3112.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/3112.test.md -------------------------------------------------------------------------------- /docs/test/aoj/3117.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/3117.test.md -------------------------------------------------------------------------------- /docs/test/aoj/3143.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/3143.test.md -------------------------------------------------------------------------------- /docs/test/aoj/DSL_2_F.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/DSL_2_F.test.md -------------------------------------------------------------------------------- /docs/test/aoj/DSL_2_H.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/DSL_2_H.test.md -------------------------------------------------------------------------------- /docs/test/aoj/DSL_2_I.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/aoj/DSL_2_I.test.md -------------------------------------------------------------------------------- /docs/test/yosupo/range_kth_smallest.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/yosupo/range_kth_smallest.test.md -------------------------------------------------------------------------------- /docs/test/yukicoder/1732.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/yukicoder/1732.test.md -------------------------------------------------------------------------------- /docs/test/yukicoder/1937.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/yukicoder/1937.test.md -------------------------------------------------------------------------------- /docs/test/yukicoder/3267.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/yukicoder/3267.test.md -------------------------------------------------------------------------------- /docs/test/yukicoder/3453.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/yukicoder/3453.test.md -------------------------------------------------------------------------------- /docs/test/yukicoder/7107.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/test/yukicoder/7107.test.md -------------------------------------------------------------------------------- /docs/toptree/toptree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/toptree/toptree.md -------------------------------------------------------------------------------- /docs/tree/ahu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/tree/ahu.md -------------------------------------------------------------------------------- /docs/tree/auxiliarytree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/tree/auxiliarytree.md -------------------------------------------------------------------------------- /docs/tree/heavylightdecomposition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/tree/heavylightdecomposition.md -------------------------------------------------------------------------------- /docs/tree/rerooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/tree/rerooting.md -------------------------------------------------------------------------------- /docs/tree/sack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/docs/tree/sack.md -------------------------------------------------------------------------------- /formalpowerseries/998244353.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/998244353.cpp -------------------------------------------------------------------------------- /formalpowerseries/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/base.cpp -------------------------------------------------------------------------------- /formalpowerseries/diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/diff.cpp -------------------------------------------------------------------------------- /formalpowerseries/div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/div.cpp -------------------------------------------------------------------------------- /formalpowerseries/exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/exp.cpp -------------------------------------------------------------------------------- /formalpowerseries/integral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/integral.cpp -------------------------------------------------------------------------------- /formalpowerseries/inv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/inv.cpp -------------------------------------------------------------------------------- /formalpowerseries/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/log.cpp -------------------------------------------------------------------------------- /formalpowerseries/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/mod.cpp -------------------------------------------------------------------------------- /formalpowerseries/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/pow.cpp -------------------------------------------------------------------------------- /formalpowerseries/shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/shift.cpp -------------------------------------------------------------------------------- /formalpowerseries/sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/formalpowerseries/sqrt.cpp -------------------------------------------------------------------------------- /geometry/3D/geometry3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/geometry/3D/geometry3D.cpp -------------------------------------------------------------------------------- /geometry/argsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/geometry/argsort.cpp -------------------------------------------------------------------------------- /geometry/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/geometry/geometry.cpp -------------------------------------------------------------------------------- /geometry/projectilemotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/geometry/projectilemotion.cpp -------------------------------------------------------------------------------- /graph/arborescence_edmond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/arborescence_edmond.cpp -------------------------------------------------------------------------------- /graph/arborescence_tarjan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/arborescence_tarjan.cpp -------------------------------------------------------------------------------- /graph/bellmanford.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/bellmanford.cpp -------------------------------------------------------------------------------- /graph/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/bfs.cpp -------------------------------------------------------------------------------- /graph/bipartitedecomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/bipartitedecomposition.cpp -------------------------------------------------------------------------------- /graph/chromatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/chromatic.cpp -------------------------------------------------------------------------------- /graph/cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/cycle.cpp -------------------------------------------------------------------------------- /graph/dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/dijkstra.cpp -------------------------------------------------------------------------------- /graph/dominatortree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/dominatortree.cpp -------------------------------------------------------------------------------- /graph/dynamicconnectivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/dynamicconnectivity.cpp -------------------------------------------------------------------------------- /graph/girth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/girth.cpp -------------------------------------------------------------------------------- /graph/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/grid.cpp -------------------------------------------------------------------------------- /graph/independentset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/independentset.cpp -------------------------------------------------------------------------------- /graph/kruskal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/kruskal.cpp -------------------------------------------------------------------------------- /graph/lowlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/lowlink.cpp -------------------------------------------------------------------------------- /graph/manhattanmst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/manhattanmst.cpp -------------------------------------------------------------------------------- /graph/multipleeuleriantrail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/multipleeuleriantrail.cpp -------------------------------------------------------------------------------- /graph/nicetree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/nicetree.cpp -------------------------------------------------------------------------------- /graph/rangetorange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/rangetorange.cpp -------------------------------------------------------------------------------- /graph/semikernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/semikernel.cpp -------------------------------------------------------------------------------- /graph/stronglyconnectedcomponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/stronglyconnectedcomponent.cpp -------------------------------------------------------------------------------- /graph/topologicalsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/topologicalsort.cpp -------------------------------------------------------------------------------- /graph/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/triangle.cpp -------------------------------------------------------------------------------- /graph/twoedgeconnectedcomponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/twoedgeconnectedcomponents.cpp -------------------------------------------------------------------------------- /graph/twosatisfiability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/twosatisfiability.cpp -------------------------------------------------------------------------------- /graph/voronoiminimumspanningtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/graph/voronoiminimumspanningtree.cpp -------------------------------------------------------------------------------- /heuristic/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/heuristic/timer.cpp -------------------------------------------------------------------------------- /heuristic/xorshift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/heuristic/xorshift.cpp -------------------------------------------------------------------------------- /includes/formalpowerseries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/includes/formalpowerseries.h -------------------------------------------------------------------------------- /io/precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/io/precision.cpp -------------------------------------------------------------------------------- /io/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/io/single.cpp -------------------------------------------------------------------------------- /io/space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/io/space.cpp -------------------------------------------------------------------------------- /io/tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/io/tuple.cpp -------------------------------------------------------------------------------- /io/yesno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/io/yesno.cpp -------------------------------------------------------------------------------- /leetcode/treenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/leetcode/treenode.cpp -------------------------------------------------------------------------------- /linearalgebra/binarymatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/linearalgebra/binarymatrix.cpp -------------------------------------------------------------------------------- /linearalgebra/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/linearalgebra/matrix.cpp -------------------------------------------------------------------------------- /linearalgebra/squarematrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/linearalgebra/squarematrix.cpp -------------------------------------------------------------------------------- /linearalgebra/tree_theorem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/linearalgebra/tree_theorem.cpp -------------------------------------------------------------------------------- /linkcuttree/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/linkcuttree/base.cpp -------------------------------------------------------------------------------- /linkcuttree/farthest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/linkcuttree/farthest.cpp -------------------------------------------------------------------------------- /linkcuttree/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/linkcuttree/path.cpp -------------------------------------------------------------------------------- /linkcuttree/subtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/linkcuttree/subtree.cpp -------------------------------------------------------------------------------- /matching/bipartite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/matching/bipartite.cpp -------------------------------------------------------------------------------- /matching/hopcroft_karp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/matching/hopcroft_karp.cpp -------------------------------------------------------------------------------- /matching/tutte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/matching/tutte.cpp -------------------------------------------------------------------------------- /math/affine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/affine.cpp -------------------------------------------------------------------------------- /math/bostanmori.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/bostanmori.cpp -------------------------------------------------------------------------------- /math/carmichael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/carmichael.cpp -------------------------------------------------------------------------------- /math/combination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/combination.cpp -------------------------------------------------------------------------------- /math/convertbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/convertbase.cpp -------------------------------------------------------------------------------- /math/dual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/dual.cpp -------------------------------------------------------------------------------- /math/enumerate_primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/enumerate_primes.cpp -------------------------------------------------------------------------------- /math/extgcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/extgcd.cpp -------------------------------------------------------------------------------- /math/factorize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/factorize.cpp -------------------------------------------------------------------------------- /math/fraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/fraction.cpp -------------------------------------------------------------------------------- /math/isprime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/isprime.cpp -------------------------------------------------------------------------------- /math/kitamasa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/kitamasa.cpp -------------------------------------------------------------------------------- /math/linearcongruence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/linearcongruence.cpp -------------------------------------------------------------------------------- /math/linearfunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/linearfunction.cpp -------------------------------------------------------------------------------- /math/moebius.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/moebius.cpp -------------------------------------------------------------------------------- /math/quotients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/quotients.cpp -------------------------------------------------------------------------------- /math/sum_of_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/sum_of_floor.cpp -------------------------------------------------------------------------------- /math/sum_of_geometric_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/sum_of_geometric_sequence.cpp -------------------------------------------------------------------------------- /math/tetrahedra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/tetrahedra.cpp -------------------------------------------------------------------------------- /math/totient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/totient.cpp -------------------------------------------------------------------------------- /math/totient_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/totient_table.cpp -------------------------------------------------------------------------------- /math/twoway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/math/twoway.cpp -------------------------------------------------------------------------------- /maxflow/dinic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/maxflow/dinic.cpp -------------------------------------------------------------------------------- /maxflow/fordfulkerson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/maxflow/fordfulkerson.cpp -------------------------------------------------------------------------------- /maxflow/leastflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/maxflow/leastflow.cpp -------------------------------------------------------------------------------- /maxflow/twocommodity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/maxflow/twocommodity.cpp -------------------------------------------------------------------------------- /mincostflow/negativeedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mincostflow/negativeedge.cpp -------------------------------------------------------------------------------- /mincostflow/primaldual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mincostflow/primaldual.cpp -------------------------------------------------------------------------------- /mod/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/factorial.cpp -------------------------------------------------------------------------------- /mod/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/inverse.cpp -------------------------------------------------------------------------------- /mod/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/log.cpp -------------------------------------------------------------------------------- /mod/mint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/mint.cpp -------------------------------------------------------------------------------- /mod/montmort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/montmort.cpp -------------------------------------------------------------------------------- /mod/order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/order.cpp -------------------------------------------------------------------------------- /mod/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/pow.cpp -------------------------------------------------------------------------------- /mod/rint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/rint.cpp -------------------------------------------------------------------------------- /mod/sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/sqrt.cpp -------------------------------------------------------------------------------- /mod/tetration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/mod/tetration.cpp -------------------------------------------------------------------------------- /polynomial/berlekampmassey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/polynomial/berlekampmassey.cpp -------------------------------------------------------------------------------- /polynomial/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/polynomial/hash.cpp -------------------------------------------------------------------------------- /polynomial/interpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/polynomial/interpolate.cpp -------------------------------------------------------------------------------- /polynomial/lagrangeinterpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/polynomial/lagrangeinterpolation.cpp -------------------------------------------------------------------------------- /polynomial/multieval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/polynomial/multieval.cpp -------------------------------------------------------------------------------- /polynomial/polynomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/polynomial/polynomial.cpp -------------------------------------------------------------------------------- /polynomial/recursivesequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/polynomial/recursivesequence.cpp -------------------------------------------------------------------------------- /segtree/2d/ushi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/2d/ushi.cpp -------------------------------------------------------------------------------- /segtree/basic/dual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/basic/dual.cpp -------------------------------------------------------------------------------- /segtree/basic/lazy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/basic/lazy.cpp -------------------------------------------------------------------------------- /segtree/basic/ushi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/basic/ushi.cpp -------------------------------------------------------------------------------- /segtree/count/dynamic_offline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/count/dynamic_offline.cpp -------------------------------------------------------------------------------- /segtree/count/static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/count/static.cpp -------------------------------------------------------------------------------- /segtree/persistent/ushi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/persistent/ushi.cpp -------------------------------------------------------------------------------- /segtree/types/offline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/types/offline.cpp -------------------------------------------------------------------------------- /segtree/types/online.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/segtree/types/online.cpp -------------------------------------------------------------------------------- /string/ahocorasick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/ahocorasick.cpp -------------------------------------------------------------------------------- /string/editdistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/editdistance.cpp -------------------------------------------------------------------------------- /string/knuthmorrispratt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/knuthmorrispratt.cpp -------------------------------------------------------------------------------- /string/longestcommonprefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/longestcommonprefix.cpp -------------------------------------------------------------------------------- /string/longestcommonsubstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/longestcommonsubstring.cpp -------------------------------------------------------------------------------- /string/manacher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/manacher.cpp -------------------------------------------------------------------------------- /string/morrispratt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/morrispratt.cpp -------------------------------------------------------------------------------- /string/palindromictree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/palindromictree.cpp -------------------------------------------------------------------------------- /string/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/parse.cpp -------------------------------------------------------------------------------- /string/rectanglehash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/rectanglehash.cpp -------------------------------------------------------------------------------- /string/rollinghash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/rollinghash.cpp -------------------------------------------------------------------------------- /string/run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/run.cpp -------------------------------------------------------------------------------- /string/split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/split.cpp -------------------------------------------------------------------------------- /string/suffixarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/suffixarray.cpp -------------------------------------------------------------------------------- /string/trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/trie.cpp -------------------------------------------------------------------------------- /string/zalgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/string/zalgorithm.cpp -------------------------------------------------------------------------------- /test/aoj/0109.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0109.test.cpp -------------------------------------------------------------------------------- /test/aoj/0168.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0168.test.cpp -------------------------------------------------------------------------------- /test/aoj/0233.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0233.test.cpp -------------------------------------------------------------------------------- /test/aoj/0294.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0294.test.cpp -------------------------------------------------------------------------------- /test/aoj/0314.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0314.test.cpp -------------------------------------------------------------------------------- /test/aoj/0343.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0343.test.cpp -------------------------------------------------------------------------------- /test/aoj/0367.linkcuttree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0367.linkcuttree.test.cpp -------------------------------------------------------------------------------- /test/aoj/0367.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0367.test.cpp -------------------------------------------------------------------------------- /test/aoj/0367.toptree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0367.toptree.test.cpp -------------------------------------------------------------------------------- /test/aoj/0377.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0377.test.cpp -------------------------------------------------------------------------------- /test/aoj/0391.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0391.test.cpp -------------------------------------------------------------------------------- /test/aoj/0402.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0402.test.cpp -------------------------------------------------------------------------------- /test/aoj/0403.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0403.test.cpp -------------------------------------------------------------------------------- /test/aoj/0415.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0415.test.cpp -------------------------------------------------------------------------------- /test/aoj/0422.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0422.test.cpp -------------------------------------------------------------------------------- /test/aoj/0423.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0423.test.cpp -------------------------------------------------------------------------------- /test/aoj/0424.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0424.test.cpp -------------------------------------------------------------------------------- /test/aoj/0425.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0425.test.cpp -------------------------------------------------------------------------------- /test/aoj/0437.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0437.test.cpp -------------------------------------------------------------------------------- /test/aoj/0438.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0438.test.cpp -------------------------------------------------------------------------------- /test/aoj/0439.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0439.test.cpp -------------------------------------------------------------------------------- /test/aoj/0502.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0502.test.cpp -------------------------------------------------------------------------------- /test/aoj/0558.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0558.test.cpp -------------------------------------------------------------------------------- /test/aoj/0563.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0563.test.cpp -------------------------------------------------------------------------------- /test/aoj/0596.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0596.test.cpp -------------------------------------------------------------------------------- /test/aoj/0613.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/0613.test.cpp -------------------------------------------------------------------------------- /test/aoj/1069.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1069.test.cpp -------------------------------------------------------------------------------- /test/aoj/1197.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1197.test.cpp -------------------------------------------------------------------------------- /test/aoj/1254.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1254.test.cpp -------------------------------------------------------------------------------- /test/aoj/1293.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1293.test.cpp -------------------------------------------------------------------------------- /test/aoj/1300.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1300.test.cpp -------------------------------------------------------------------------------- /test/aoj/1308.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1308.test.cpp -------------------------------------------------------------------------------- /test/aoj/1312.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1312.test.cpp -------------------------------------------------------------------------------- /test/aoj/1328.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1328.test.cpp -------------------------------------------------------------------------------- /test/aoj/1338.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1338.test.cpp -------------------------------------------------------------------------------- /test/aoj/1508.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1508.test.cpp -------------------------------------------------------------------------------- /test/aoj/1549.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1549.test.cpp -------------------------------------------------------------------------------- /test/aoj/1579.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1579.test.cpp -------------------------------------------------------------------------------- /test/aoj/1595.linkcuttree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1595.linkcuttree.test.cpp -------------------------------------------------------------------------------- /test/aoj/1595.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1595.test.cpp -------------------------------------------------------------------------------- /test/aoj/1595.toptree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1595.toptree.test.cpp -------------------------------------------------------------------------------- /test/aoj/1599.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1599.test.cpp -------------------------------------------------------------------------------- /test/aoj/1607.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1607.test.cpp -------------------------------------------------------------------------------- /test/aoj/1613.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1613.test.cpp -------------------------------------------------------------------------------- /test/aoj/1615.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1615.test.cpp -------------------------------------------------------------------------------- /test/aoj/1630.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1630.test.cpp -------------------------------------------------------------------------------- /test/aoj/1642.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/1642.test.cpp -------------------------------------------------------------------------------- /test/aoj/2060.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2060.test.cpp -------------------------------------------------------------------------------- /test/aoj/2187.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2187.test.cpp -------------------------------------------------------------------------------- /test/aoj/2212.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2212.test.cpp -------------------------------------------------------------------------------- /test/aoj/2222.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2222.test.cpp -------------------------------------------------------------------------------- /test/aoj/2230.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2230.test.cpp -------------------------------------------------------------------------------- /test/aoj/2235.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2235.test.cpp -------------------------------------------------------------------------------- /test/aoj/2257.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2257.test.cpp -------------------------------------------------------------------------------- /test/aoj/2270.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2270.test.cpp -------------------------------------------------------------------------------- /test/aoj/2286.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2286.test.cpp -------------------------------------------------------------------------------- /test/aoj/2290.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2290.test.cpp -------------------------------------------------------------------------------- /test/aoj/2292.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2292.test.cpp -------------------------------------------------------------------------------- /test/aoj/2294.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2294.test.cpp -------------------------------------------------------------------------------- /test/aoj/2308.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2308.test.cpp -------------------------------------------------------------------------------- /test/aoj/2309.tarjan.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2309.tarjan.test.cpp -------------------------------------------------------------------------------- /test/aoj/2309.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2309.test.cpp -------------------------------------------------------------------------------- /test/aoj/2313.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2313.test.cpp -------------------------------------------------------------------------------- /test/aoj/2324.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2324.test.cpp -------------------------------------------------------------------------------- /test/aoj/2328.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2328.test.cpp -------------------------------------------------------------------------------- /test/aoj/2359.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2359.test.cpp -------------------------------------------------------------------------------- /test/aoj/2370.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2370.test.cpp -------------------------------------------------------------------------------- /test/aoj/2397.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2397.test.cpp -------------------------------------------------------------------------------- /test/aoj/2405.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2405.test.cpp -------------------------------------------------------------------------------- /test/aoj/2415.knuthyao.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2415.knuthyao.test.cpp -------------------------------------------------------------------------------- /test/aoj/2415.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2415.test.cpp -------------------------------------------------------------------------------- /test/aoj/2432.ignore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2432.ignore.cpp -------------------------------------------------------------------------------- /test/aoj/2444.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2444.test.cpp -------------------------------------------------------------------------------- /test/aoj/2446.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2446.test.cpp -------------------------------------------------------------------------------- /test/aoj/2450.linkcuttree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2450.linkcuttree.test.cpp -------------------------------------------------------------------------------- /test/aoj/2450.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2450.test.cpp -------------------------------------------------------------------------------- /test/aoj/2488.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2488.test.cpp -------------------------------------------------------------------------------- /test/aoj/2513.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2513.test.cpp -------------------------------------------------------------------------------- /test/aoj/2560.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2560.test.cpp -------------------------------------------------------------------------------- /test/aoj/2563.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2563.test.cpp -------------------------------------------------------------------------------- /test/aoj/2603.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2603.test.cpp -------------------------------------------------------------------------------- /test/aoj/2624.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2624.test.cpp -------------------------------------------------------------------------------- /test/aoj/2627.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2627.test.cpp -------------------------------------------------------------------------------- /test/aoj/2636.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2636.test.cpp -------------------------------------------------------------------------------- /test/aoj/2644.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2644.test.cpp -------------------------------------------------------------------------------- /test/aoj/2646.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2646.test.cpp -------------------------------------------------------------------------------- /test/aoj/2647.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2647.test.cpp -------------------------------------------------------------------------------- /test/aoj/2659.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2659.test.cpp -------------------------------------------------------------------------------- /test/aoj/2667.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2667.test.cpp -------------------------------------------------------------------------------- /test/aoj/2674.count.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2674.count.test.cpp -------------------------------------------------------------------------------- /test/aoj/2674.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2674.test.cpp -------------------------------------------------------------------------------- /test/aoj/2679.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2679.test.cpp -------------------------------------------------------------------------------- /test/aoj/2687.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2687.test.cpp -------------------------------------------------------------------------------- /test/aoj/2711.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2711.test.cpp -------------------------------------------------------------------------------- /test/aoj/2720.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2720.test.cpp -------------------------------------------------------------------------------- /test/aoj/2725.linecontainer.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2725.linecontainer.test.cpp -------------------------------------------------------------------------------- /test/aoj/2725.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2725.test.cpp -------------------------------------------------------------------------------- /test/aoj/2736.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2736.test.cpp -------------------------------------------------------------------------------- /test/aoj/2790.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2790.test.cpp -------------------------------------------------------------------------------- /test/aoj/2842.BIT2D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2842.BIT2D.test.cpp -------------------------------------------------------------------------------- /test/aoj/2842.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2842.test.cpp -------------------------------------------------------------------------------- /test/aoj/2871.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2871.test.cpp -------------------------------------------------------------------------------- /test/aoj/2872.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2872.test.cpp -------------------------------------------------------------------------------- /test/aoj/2890.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2890.test.cpp -------------------------------------------------------------------------------- /test/aoj/2891.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2891.test.cpp -------------------------------------------------------------------------------- /test/aoj/2934.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2934.test.cpp -------------------------------------------------------------------------------- /test/aoj/2948.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2948.test.cpp -------------------------------------------------------------------------------- /test/aoj/2951.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2951.test.cpp -------------------------------------------------------------------------------- /test/aoj/2959.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2959.test.cpp -------------------------------------------------------------------------------- /test/aoj/2968.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2968.test.cpp -------------------------------------------------------------------------------- /test/aoj/2969.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2969.test.cpp -------------------------------------------------------------------------------- /test/aoj/2970.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2970.test.cpp -------------------------------------------------------------------------------- /test/aoj/2971.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2971.test.cpp -------------------------------------------------------------------------------- /test/aoj/2975.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2975.test.cpp -------------------------------------------------------------------------------- /test/aoj/2977.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2977.test.cpp -------------------------------------------------------------------------------- /test/aoj/2979.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2979.test.cpp -------------------------------------------------------------------------------- /test/aoj/2981.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2981.test.cpp -------------------------------------------------------------------------------- /test/aoj/2983.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2983.test.cpp -------------------------------------------------------------------------------- /test/aoj/2985.garner.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2985.garner.test.cpp -------------------------------------------------------------------------------- /test/aoj/2985.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2985.test.cpp -------------------------------------------------------------------------------- /test/aoj/2995.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/2995.test.cpp -------------------------------------------------------------------------------- /test/aoj/3024.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3024.test.cpp -------------------------------------------------------------------------------- /test/aoj/3033.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3033.test.cpp -------------------------------------------------------------------------------- /test/aoj/3035.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3035.test.cpp -------------------------------------------------------------------------------- /test/aoj/3037.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3037.test.cpp -------------------------------------------------------------------------------- /test/aoj/3047.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3047.test.cpp -------------------------------------------------------------------------------- /test/aoj/3053.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3053.test.cpp -------------------------------------------------------------------------------- /test/aoj/3058.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3058.test.cpp -------------------------------------------------------------------------------- /test/aoj/3062.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3062.test.cpp -------------------------------------------------------------------------------- /test/aoj/3063.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3063.test.cpp -------------------------------------------------------------------------------- /test/aoj/3069.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3069.test.cpp -------------------------------------------------------------------------------- /test/aoj/3072.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3072.test.cpp -------------------------------------------------------------------------------- /test/aoj/3073.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3073.test.cpp -------------------------------------------------------------------------------- /test/aoj/3074.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3074.test.cpp -------------------------------------------------------------------------------- /test/aoj/3081.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3081.test.cpp -------------------------------------------------------------------------------- /test/aoj/3084.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3084.test.cpp -------------------------------------------------------------------------------- /test/aoj/3086.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3086.test.cpp -------------------------------------------------------------------------------- /test/aoj/3102.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3102.test.cpp -------------------------------------------------------------------------------- /test/aoj/3112.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3112.test.cpp -------------------------------------------------------------------------------- /test/aoj/3117.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3117.test.cpp -------------------------------------------------------------------------------- /test/aoj/3120.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3120.test.cpp -------------------------------------------------------------------------------- /test/aoj/3138.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3138.test.cpp -------------------------------------------------------------------------------- /test/aoj/3142.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3142.test.cpp -------------------------------------------------------------------------------- /test/aoj/3143.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3143.test.cpp -------------------------------------------------------------------------------- /test/aoj/3148.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3148.test.cpp -------------------------------------------------------------------------------- /test/aoj/3168.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3168.test.cpp -------------------------------------------------------------------------------- /test/aoj/3179.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3179.test.cpp -------------------------------------------------------------------------------- /test/aoj/3183.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3183.test.cpp -------------------------------------------------------------------------------- /test/aoj/3198.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3198.test.cpp -------------------------------------------------------------------------------- /test/aoj/3208.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3208.test.cpp -------------------------------------------------------------------------------- /test/aoj/3213.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3213.test.cpp -------------------------------------------------------------------------------- /test/aoj/3506.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3506.test.cpp -------------------------------------------------------------------------------- /test/aoj/3518.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/3518.test.cpp -------------------------------------------------------------------------------- /test/aoj/ALDS1_10_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ALDS1_10_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/ALDS1_14_B.knuthmorrispratt.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ALDS1_14_B.knuthmorrispratt.test.cpp -------------------------------------------------------------------------------- /test/aoj/ALDS1_14_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ALDS1_14_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/ALDS1_14_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ALDS1_14_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/ALDS1_15_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ALDS1_15_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/ALDS1_1_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ALDS1_1_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/ALDS1_5_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ALDS1_5_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/ALDS1_9_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ALDS1_9_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_1_E.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_1_E.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_3_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_3_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_3_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_3_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_E.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_E.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_F.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_F.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_G.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_G.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_H.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_H.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_I.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_I.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_J.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_J.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_K.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_K.test.cpp -------------------------------------------------------------------------------- /test/aoj/DPL_5_L.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DPL_5_L.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_1_A.quickfind.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_1_A.quickfind.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_1_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_1_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_1_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_1_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_E.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_E.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_F.bbst.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_F.bbst.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_F.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_F.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_G.bbst.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_G.bbst.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_H.bbst.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_H.bbst.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_H.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_H.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_I.bbst.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_I.bbst.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_2_I.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_2_I.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_3_D.cartesiantree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_3_D.cartesiantree.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_3_D.disjointsparsetable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_3_D.disjointsparsetable.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_3_D.slidingwindowaggregation.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_3_D.slidingwindowaggregation.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_3_D.sparsetable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_3_D.sparsetable.test.cpp -------------------------------------------------------------------------------- /test/aoj/DSL_3_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/DSL_3_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_1_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_1_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_1_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_1_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_2_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_2_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_2_B.tarjan.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_2_B.tarjan.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_2_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_2_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_3_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_3_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_3_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_3_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_4_B.ignore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_4_B.ignore.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_5_A.linkcuttree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_5_A.linkcuttree.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_5_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_5_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_5_C.lca.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_5_C.lca.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_5_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_5_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_5_D.linkcuttree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_5_D.linkcuttree.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_5_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_5_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_5_E.linkcuttree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_5_E.linkcuttree.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_6_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_6_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_6_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_6_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/GRL_7_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/GRL_7_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/ITP1_11_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ITP1_11_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/ITP1_11_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ITP1_11_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/ITP1_11_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ITP1_11_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/ITP1_11_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/ITP1_11_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_1_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_1_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_1_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_1_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_1_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_1_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_1_E.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_1_E.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_2_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_2_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_2_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_2_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_2_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_2_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_2_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_2_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_2_E.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_2_E.test.cpp -------------------------------------------------------------------------------- /test/aoj/NTL_2_F.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/NTL_2_F.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/2334.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/2334.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/2448.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/2448.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/2454.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/2454.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/3049.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/3049.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/3056.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/3056.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_1_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_1_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_1_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_1_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_1_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_1_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_2_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_2_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_2_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_2_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_2_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_2_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_2_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_2_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_3_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_3_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_3_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_3_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_3_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_3_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_4_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_4_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_4_B.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_4_B.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_4_C.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_4_C.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_5_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_5_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_6_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_6_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_7_A.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_7_A.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_7_D.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_7_D.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_7_E.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_7_E.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_7_F.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_7_F.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_7_G.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_7_G.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_7_H.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_7_H.test.cpp -------------------------------------------------------------------------------- /test/aoj/geometry/CGL_7_I.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/aoj/geometry/CGL_7_I.test.cpp -------------------------------------------------------------------------------- /test/yosupo/assignment.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/assignment.test.cpp -------------------------------------------------------------------------------- /test/yosupo/associative_array.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/associative_array.test.cpp -------------------------------------------------------------------------------- /test/yosupo/bernoulli_number.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/bernoulli_number.test.cpp -------------------------------------------------------------------------------- /test/yosupo/bipartitematching.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/bipartitematching.test.cpp -------------------------------------------------------------------------------- /test/yosupo/bitwise_and_convolution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/bitwise_and_convolution.test.cpp -------------------------------------------------------------------------------- /test/yosupo/bitwise_xor_convolution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/bitwise_xor_convolution.test.cpp -------------------------------------------------------------------------------- /test/yosupo/cartesian_tree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/cartesian_tree.test.cpp -------------------------------------------------------------------------------- /test/yosupo/convolution_mod.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/convolution_mod.test.cpp -------------------------------------------------------------------------------- /test/yosupo/convolution_mod_1000000007.garner.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/convolution_mod_1000000007.garner.test.cpp -------------------------------------------------------------------------------- /test/yosupo/convolution_mod_1000000007.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/convolution_mod_1000000007.test.cpp -------------------------------------------------------------------------------- /test/yosupo/cycle_detection.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/cycle_detection.test.cpp -------------------------------------------------------------------------------- /test/yosupo/discrete_logarithm_mod.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/discrete_logarithm_mod.test.cpp -------------------------------------------------------------------------------- /test/yosupo/dominatortree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/dominatortree.test.cpp -------------------------------------------------------------------------------- /test/yosupo/dynamic_sequence_range_affine_range_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/dynamic_sequence_range_affine_range_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/dynamic_tree_vertex_add_path_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/dynamic_tree_vertex_add_path_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/dynamic_tree_vertex_add_subtree_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/dynamic_tree_vertex_add_subtree_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/dynamic_tree_vertex_add_subtree_sum.toptree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/dynamic_tree_vertex_add_subtree_sum.toptree.test.cpp -------------------------------------------------------------------------------- /test/yosupo/dynamic_tree_vertex_set_path_composite.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/dynamic_tree_vertex_set_path_composite.test.cpp -------------------------------------------------------------------------------- /test/yosupo/dynamic_tree_vertex_set_path_composite.toptree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/dynamic_tree_vertex_set_path_composite.toptree.test.cpp -------------------------------------------------------------------------------- /test/yosupo/enumerate_primes.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/enumerate_primes.test.cpp -------------------------------------------------------------------------------- /test/yosupo/enumerate_triangles.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/enumerate_triangles.test.cpp -------------------------------------------------------------------------------- /test/yosupo/exp_of_formal_power_series.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/exp_of_formal_power_series.test.cpp -------------------------------------------------------------------------------- /test/yosupo/find_linear_recurrence.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/find_linear_recurrence.test.cpp -------------------------------------------------------------------------------- /test/yosupo/frequency_table_of_tree_distance.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/frequency_table_of_tree_distance.test.cpp -------------------------------------------------------------------------------- /test/yosupo/inv_of_formal_power_series.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/inv_of_formal_power_series.test.cpp -------------------------------------------------------------------------------- /test/yosupo/kth_root_integer.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/kth_root_integer.test.cpp -------------------------------------------------------------------------------- /test/yosupo/kth_term_of_linearly_recurrent_sequence.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/kth_term_of_linearly_recurrent_sequence.test.cpp -------------------------------------------------------------------------------- /test/yosupo/lca.linkcuttree.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/lca.linkcuttree.test.cpp -------------------------------------------------------------------------------- /test/yosupo/lca.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/lca.test.cpp -------------------------------------------------------------------------------- /test/yosupo/line_add_get_min.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/line_add_get_min.test.cpp -------------------------------------------------------------------------------- /test/yosupo/log_of_formal_power_series.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/log_of_formal_power_series.test.cpp -------------------------------------------------------------------------------- /test/yosupo/manhattanmst.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/manhattanmst.test.cpp -------------------------------------------------------------------------------- /test/yosupo/many_aplusb.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/many_aplusb.test.cpp -------------------------------------------------------------------------------- /test/yosupo/matrix_det.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/matrix_det.test.cpp -------------------------------------------------------------------------------- /test/yosupo/maximum_independent_set.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/maximum_independent_set.test.cpp -------------------------------------------------------------------------------- /test/yosupo/min_cost_b_flow.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/min_cost_b_flow.test.cpp -------------------------------------------------------------------------------- /test/yosupo/montmort_number_mod.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/montmort_number_mod.test.cpp -------------------------------------------------------------------------------- /test/yosupo/multipoint_evaluation.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/multipoint_evaluation.test.cpp -------------------------------------------------------------------------------- /test/yosupo/number_of_substrings.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/number_of_substrings.test.cpp -------------------------------------------------------------------------------- /test/yosupo/partition_function.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/partition_function.test.cpp -------------------------------------------------------------------------------- /test/yosupo/persistent_queue.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/persistent_queue.test.cpp -------------------------------------------------------------------------------- /test/yosupo/point_add_range_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/point_add_range_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/point_add_rectangle_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/point_add_rectangle_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/point_set_range_composite.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/point_set_range_composite.test.cpp -------------------------------------------------------------------------------- /test/yosupo/polynomial_interpolation.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/polynomial_interpolation.test.cpp -------------------------------------------------------------------------------- /test/yosupo/polynomial_taylor_shift.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/polynomial_taylor_shift.test.cpp -------------------------------------------------------------------------------- /test/yosupo/pow_of_formal_power_series.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/pow_of_formal_power_series.test.cpp -------------------------------------------------------------------------------- /test/yosupo/queue_operate_all_composite.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/queue_operate_all_composite.test.cpp -------------------------------------------------------------------------------- /test/yosupo/range_affine_range_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/range_affine_range_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/range_kth_smallest.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/range_kth_smallest.test.cpp -------------------------------------------------------------------------------- /test/yosupo/rectangle_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/rectangle_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/runenumerate.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/runenumerate.test.cpp -------------------------------------------------------------------------------- /test/yosupo/scc.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/scc.test.cpp -------------------------------------------------------------------------------- /test/yosupo/segment_add_get_min.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/segment_add_get_min.test.cpp -------------------------------------------------------------------------------- /test/yosupo/set_xor_min.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/set_xor_min.test.cpp -------------------------------------------------------------------------------- /test/yosupo/sharp_p_subset_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/sharp_p_subset_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/shortest_path.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/shortest_path.test.cpp -------------------------------------------------------------------------------- /test/yosupo/sort_points_by_argument.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/sort_points_by_argument.test.cpp -------------------------------------------------------------------------------- /test/yosupo/sqrt_mod.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/sqrt_mod.test.cpp -------------------------------------------------------------------------------- /test/yosupo/sqrt_of_formal_power_series.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/sqrt_of_formal_power_series.test.cpp -------------------------------------------------------------------------------- /test/yosupo/static_range_frequency.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/static_range_frequency.test.cpp -------------------------------------------------------------------------------- /test/yosupo/static_range_inversions_query.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/static_range_inversions_query.test.cpp -------------------------------------------------------------------------------- /test/yosupo/static_range_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/static_range_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/staticrmq.disjointsparsetable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/staticrmq.disjointsparsetable.test.cpp -------------------------------------------------------------------------------- /test/yosupo/staticrmq.sparsetable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/staticrmq.sparsetable.test.cpp -------------------------------------------------------------------------------- /test/yosupo/stirling_number_of_the_first_kind.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/stirling_number_of_the_first_kind.test.cpp -------------------------------------------------------------------------------- /test/yosupo/stirling_number_of_the_second_kind.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/stirling_number_of_the_second_kind.test.cpp -------------------------------------------------------------------------------- /test/yosupo/subset_convolution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/subset_convolution.test.cpp -------------------------------------------------------------------------------- /test/yosupo/suffixarray.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/suffixarray.test.cpp -------------------------------------------------------------------------------- /test/yosupo/sum_of_floor_of_linear.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/sum_of_floor_of_linear.test.cpp -------------------------------------------------------------------------------- /test/yosupo/tetration_mod.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/tetration_mod.test.cpp -------------------------------------------------------------------------------- /test/yosupo/tree_decomposition_width_2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/tree_decomposition_width_2.test.cpp -------------------------------------------------------------------------------- /test/yosupo/tree_diameter.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/tree_diameter.test.cpp -------------------------------------------------------------------------------- /test/yosupo/two_edge_connected_components.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/two_edge_connected_components.test.cpp -------------------------------------------------------------------------------- /test/yosupo/two_sat.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/two_sat.test.cpp -------------------------------------------------------------------------------- /test/yosupo/unionfind.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/unionfind.test.cpp -------------------------------------------------------------------------------- /test/yosupo/vertex_add_path_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/vertex_add_path_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/vertex_add_subtree_sum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/vertex_add_subtree_sum.test.cpp -------------------------------------------------------------------------------- /test/yosupo/zalgorithm.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yosupo/zalgorithm.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0022.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0022.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0104.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0104.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0143.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0143.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0206.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0206.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0222.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0222.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0399.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0399.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0444.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0444.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0472.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0472.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0771.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0771.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/0831.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/0831.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1013.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1013.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1504.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1504.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1580.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1580.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1665.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1665.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1732.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1732.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1923.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1923.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1937.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1937.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1948.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1948.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1950.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1950.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/1973.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/1973.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2063.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2063.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2085.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2085.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2113.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2113.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2125.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2125.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2147.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2147.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2520.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2520.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2587.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2587.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2600.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2600.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2744.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2744.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/2772.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/2772.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3211.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3211.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3227.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3227.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3267.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3267.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3277.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3277.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3354.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3354.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3405.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3405.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3407.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3407.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3453.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3453.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3592.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3592.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3912.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3912.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/3961.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/3961.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4072.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4072.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4117.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4117.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4271.avx2.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4271.avx2.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4271.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4271.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4387.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4387.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4474.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4474.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4569.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4569.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4706.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4706.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4778.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4778.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4852.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4852.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4862.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4862.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4872.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4872.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4918.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4918.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/4941.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/4941.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/5011.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/5011.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/5025.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/5025.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/5061.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/5061.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/5223.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/5223.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/5633.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/5633.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/6680.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/6680.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/7107.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/7107.test.cpp -------------------------------------------------------------------------------- /test/yukicoder/9158.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/test/yukicoder/9158.test.cpp -------------------------------------------------------------------------------- /tools/all_permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/all_permutations.cpp -------------------------------------------------------------------------------- /tools/avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/avx2.cpp -------------------------------------------------------------------------------- /tools/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/bigint.cpp -------------------------------------------------------------------------------- /tools/cc_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/cc_hash.cpp -------------------------------------------------------------------------------- /tools/chminmax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/chminmax.cpp -------------------------------------------------------------------------------- /tools/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/debug.cpp -------------------------------------------------------------------------------- /tools/defaultdict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/defaultdict.cpp -------------------------------------------------------------------------------- /tools/dice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/dice.cpp -------------------------------------------------------------------------------- /tools/drop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/drop.cpp -------------------------------------------------------------------------------- /tools/fastio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/fastio.cpp -------------------------------------------------------------------------------- /tools/fixpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/fixpoint.cpp -------------------------------------------------------------------------------- /tools/gridbfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/gridbfs.cpp -------------------------------------------------------------------------------- /tools/int128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/int128.cpp -------------------------------------------------------------------------------- /tools/iskado.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/iskado.cpp -------------------------------------------------------------------------------- /tools/trio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tools/trio.cpp -------------------------------------------------------------------------------- /toptree/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/toptree/base.cpp -------------------------------------------------------------------------------- /toptree/distancesum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/toptree/distancesum.cpp -------------------------------------------------------------------------------- /toptree/farthest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/toptree/farthest.cpp -------------------------------------------------------------------------------- /toptree/steiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/toptree/steiner.cpp -------------------------------------------------------------------------------- /toptree/toptree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/toptree/toptree.cpp -------------------------------------------------------------------------------- /tree/ahu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/ahu.cpp -------------------------------------------------------------------------------- /tree/auxiliarytree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/auxiliarytree.cpp -------------------------------------------------------------------------------- /tree/centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/centroid.cpp -------------------------------------------------------------------------------- /tree/construct_from_distances_to_farthest_vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/construct_from_distances_to_farthest_vertex.cpp -------------------------------------------------------------------------------- /tree/diameterforedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/diameterforedge.cpp -------------------------------------------------------------------------------- /tree/diameterforvertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/diameterforvertex.cpp -------------------------------------------------------------------------------- /tree/eulertourforbfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/eulertourforbfs.cpp -------------------------------------------------------------------------------- /tree/eulertourforedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/eulertourforedge.cpp -------------------------------------------------------------------------------- /tree/eulertourforvertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/eulertourforvertex.cpp -------------------------------------------------------------------------------- /tree/heavylightdecomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/heavylightdecomposition.cpp -------------------------------------------------------------------------------- /tree/lca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/lca.cpp -------------------------------------------------------------------------------- /tree/levelancestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/levelancestor.cpp -------------------------------------------------------------------------------- /tree/lowestcommonancestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/lowestcommonancestor.cpp -------------------------------------------------------------------------------- /tree/mo_on_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/mo_on_tree.cpp -------------------------------------------------------------------------------- /tree/rerooting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/rerooting.cpp -------------------------------------------------------------------------------- /tree/sack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/tree/sack.cpp -------------------------------------------------------------------------------- /vector/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/compress.cpp -------------------------------------------------------------------------------- /vector/fusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/fusion.cpp -------------------------------------------------------------------------------- /vector/identity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/identity.cpp -------------------------------------------------------------------------------- /vector/inversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/inversion.cpp -------------------------------------------------------------------------------- /vector/multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/multi.cpp -------------------------------------------------------------------------------- /vector/near.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/near.cpp -------------------------------------------------------------------------------- /vector/powers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/powers.cpp -------------------------------------------------------------------------------- /vector/reversed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/reversed.cpp -------------------------------------------------------------------------------- /vector/runlength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/runlength.cpp -------------------------------------------------------------------------------- /vector/sorted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/sorted.cpp -------------------------------------------------------------------------------- /vector/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beet-aizu/library/HEAD/vector/zip.cpp --------------------------------------------------------------------------------