forked from yosupo06/library-checker-problems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
categories.toml
163 lines (154 loc) · 3.44 KB
/
categories.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[[categories]]
name = "Sample"
problems = [
"aplusb",
"many_aplusb"
]
[[categories]]
name = "Data Structure"
problems = [
"associative_array",
"predecessor_problem",
"unionfind",
"static_range_sum",
"staticrmq",
"point_add_range_sum",
"point_set_range_composite",
"range_affine_range_sum",
"range_chmin_chmax_add_range_sum",
"range_kth_smallest",
"vertex_add_path_sum",
"vertex_set_path_composite",
"vertex_add_subtree_sum",
"dynamic_sequence_range_affine_range_sum",
"dynamic_tree_vertex_add_path_sum",
"dynamic_tree_vertex_set_path_composite",
"dynamic_tree_vertex_add_subtree_sum",
"dynamic_tree_subtree_add_subtree_sum",
"dynamic_graph_vertex_add_component_sum",
"set_xor_min",
"line_add_get_min",
"segment_add_get_min",
"queue_operate_all_composite",
"static_range_frequency",
"static_range_inversions_query",
"rectangle_sum",
"point_add_rectangle_sum",
"persistent_queue",
"persistent_unionfind"
]
[[categories]]
name = "Graph"
problems = [
"cycle_detection",
"shortest_path",
"scc",
"k_shortest_walk",
"two_edge_connected_components",
"three_edge_connected_components",
"min_cost_b_flow",
"bipartitematching",
"general_matching",
"general_weighted_matching",
"bipartite_edge_coloring",
"assignment",
"directedmst",
"manhattanmst",
"dominatortree",
"maximum_independent_set",
"chromatic_number",
"enumerate_triangles",
"tree_decomposition_width_2",
"global_minimum_cut_of_dynamic_star_augmented_graph",
"chordal_graph_recognition"
]
[[categories]]
name = "Tree"
problems = [
"tree_diameter",
"lca",
"cartesian_tree",
"frequency_table_of_tree_distance"
]
[[categories]]
name = "Math"
problems = [
"counting_primes",
"enumerate_primes",
"factorize",
"binomial_coefficient",
"stirling_number_of_the_first_kind",
"stirling_number_of_the_second_kind",
"bernoulli_number",
"partition_function",
"montmort_number_mod",
"sum_of_totient_function",
"sum_of_exponential_times_polynomial",
"sum_of_exponential_times_polynomial_limit",
"find_linear_recurrence",
"kth_term_of_linearly_recurrent_sequence",
"sum_of_floor_of_linear",
"sqrt_mod",
"kth_root_mod",
"kth_root_integer",
"discrete_logarithm_mod",
"tetration_mod",
"nim_product_64",
"sharp_p_subset_sum",
"two_sat"
]
[[categories]]
name = "Convolution"
problems = [
"convolution_mod",
"convolution_mod_1000000007",
"convolution_mod_2_64",
"convolution_mod_large",
"subset_convolution",
"bitwise_and_convolution",
"bitwise_xor_convolution",
"multivariate_convolution",
"mul_mod2n_convolution",
]
[[categories]]
name = "Polynomial"
problems = [
"inv_of_formal_power_series",
"exp_of_formal_power_series",
"log_of_formal_power_series",
"pow_of_formal_power_series",
"sqrt_of_formal_power_series",
"composition_of_formal_power_series",
"multipoint_evaluation",
"polynomial_interpolation",
"polynomial_taylor_shift",
"shift_of_sampling_points_of_polynomial",
"division_of_polynomials",
"inv_of_polynomials",
]
[[categories]]
name = "Matrix"
problems = [
"matrix_product",
"matrix_det",
"sparse_matrix_det",
"system_of_linear_equations",
"inverse_matrix",
"characteristic_polynomial",
"hafnian_of_matrix"
]
[[categories]]
name = "String"
problems = [
"zalgorithm",
"enumerate_palindromes",
"suffixarray",
"number_of_substrings",
"runenumerate"
]
[[categories]]
name = "Geometry"
problems = [
"sort_points_by_argument",
"convex_layers"
]