-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.yaml
251 lines (251 loc) · 6.55 KB
/
content.yaml
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
- Misc:
- Contest:
- Makefile:
- misc/Makefile
- 'How Did We Get Here?':
- Macros:
# - misc/speed/macros.typ
- misc/speed/macros.hpp
- Fast I/O:
- misc/speed/fast-io.hpp
- Kotlin:
- misc/speed/kotlin-io.kt
# - constexpr:
# - misc/speed/constexpr.typ
# - misc/speed/constexpr.hpp
- Bump Allocator:
- misc/speed/bump-allocator.hpp
- Tools:
- Floating Point Binary Search:
- misc/float-binary-search.hpp
- SplitMix64:
- misc/splitmix64.hpp
- '<random>':
- misc/random.hpp
- x86 Stack Hack:
- misc/stack-size.hpp
- ctypes:
- misc/libgmp.py
- Algorithms:
- Bit Hacks:
- misc/bit-hacks.hpp
- Aliens Trick:
- misc/aliens.hpp
- Hilbert Curve:
- misc/hilbert.hpp
# - Infinite Grid Knight Distance:
# - misc/knight.hpp
# - Poker Hand:
# - misc/poker.hpp
- Longest Increasing Subsequence:
- misc/lis.hpp
- Mo's Algorithm on Tree:
- misc/mo-tree.hpp
- Data Structures:
- GNU PBDS:
- ds/pbds.hpp
- Fenwick Tree:
- ds/fenwick.hpp
- Segment Tree (ZKW):
- ds/segtree.hpp
- Line Container:
- ds/line-container.hpp
- Li-Chao Tree:
- ds/li-chao.hpp
# - Heavy-Light Decomposition:
# - ds/hld.hpp
- adamant HLD:
- ds/adamant-hld.hpp
- van Emde Boas Tree:
- ds/veb-tree.hpp
- Wavelet Matrix:
- ds/wavelet-matrix.hpp
- Link-Cut Tree:
- ds/lct.hpp
- Graph:
- Modeling:
- graph/model.typ
- Matching/Flows:
- Dinic's Algorithm:
- graph/flows/dinic.hpp
- Minimum Cost Flow:
- graph/flows/min-cost-flow.hpp
- Gomory-Hu Tree:
- graph/flows/gomory-hu.hpp
- Global Minimum Cut:
- graph/flows/global-min-cut.hpp
- Bipartite Minimum Cover:
- graph/flows/min-bi-cover.hpp
- Edmonds' Algorithm:
- graph/flows/edmonds.hpp
- Minimum Weight Matching:
- graph/flows/min-weight-general.hpp
- Stable Marriage:
- graph/flows/marriage.hpp
- Kuhn-Munkres algorithm:
- graph/flows/km.hpp
- Shortest Path Faster Algorithm:
- graph/spfa.hpp
- Strongly Connected Components:
- graph/scc.hpp
- 2-Satisfiability:
- graph/2sat.hpp
- Biconnected Components:
- Articulation Points:
- graph/tarjan-ap.hpp
- Bridges:
- graph/tarjan-b.hpp
- Triconnected Components:
- graph/tcc.hpp
- Centroid Decomposition:
- graph/centroid-decomposition.hpp
- Shallowest Tree Decomposition:
- graph/shallowest-tree.hpp
- Tree Reroot DP:
- graph/reroot.hpp
- Minimum Mean Cycle:
- graph/min-mean-cycle.hpp
- Directed MST:
- graph/dmst.hpp
- Maximum Clique:
- graph/clique.hpp
- Dominator Tree:
- graph/dominator-tree.hpp
- Manhattan Distance MST:
- graph/manhattan-mst.hpp
- Virtual Tree:
- graph/virtual-tree.hpp
- Math:
- Number Theory:
- Mod Struct:
- math/number-theory/modular.typ
- math/number-theory/modular.hpp
- Miller-Rabin:
- math/number-theory/miller-rabin.hpp
- Linear Sieve:
- math/number-theory/sieve.hpp
- Get Factors:
- math/number-theory/all-factors.hpp
- Binary GCD:
- math/number-theory/binary-gcd.hpp
- Extended GCD:
- math/number-theory/extgcd.hpp
- Chinese Remainder Theorem:
- math/number-theory/crt.hpp
- Baby-Step Giant-Step:
- math/number-theory/bsgs.hpp
- Pohlig-Hellman Algorithm:
- math/number-theory/pohlig-hellman.typ
- Pollard's Rho:
- math/number-theory/pollard-rho.hpp
- Tonelli-Shanks Algorithm:
- math/number-theory/tonelli-shanks.hpp
- Chinese Sieve:
- math/number-theory/djs.hpp
- Rational Number Binary Search:
- math/number-theory/frac-bs.hpp
- Farey Sequence:
- math/number-theory/farey-sequence.hpp
- Combinatorics:
- Matroid Intersection:
- math/combinatorics/matroid.typ
- math/combinatorics/matroid.hpp
- De Brujin Sequence:
- math/combinatorics/de-brujin.hpp
- Multinomial:
- math/combinatorics/multinomial.hpp
# - Algebra:
# - Formal Power Series:
# - math/algebra/formal-power-series.hpp
- Theorems:
- math/theorems.typ
- Numeric:
- Barrett Reduction:
- numeric/barrett-reduction.hpp
- Long Long Multiplication:
- numeric/ll-mul.hpp
# - numeric/ll-mul-asm.hpp
- Fast Fourier Transform:
- numeric/fft.hpp
- numeric/fft-usage.hpp
- Fast Walsh-Hadamard Transform:
- numeric/fwht.hpp
- Subset Convolution:
- numeric/subset-convolution.hpp
- Linear Recurrences:
- Berlekamp-Massey Algorithm:
- numeric/berlekamp-massey.hpp
- Linear Recurrence Calculation:
- numeric/linear-recurrence.hpp
- Matrices:
- Determinant:
- numeric/det-mod.hpp
- numeric/det-double.hpp
- Inverse:
- numeric/inverse.hpp
- Characteristic Polynomial:
- numeric/char-poly.hpp
- Solve Linear Equation:
- numeric/linear-eq.hpp
- Polynomial Interpolation:
- numeric/interpolation.hpp
- Simplex Algorithm:
- numeric/simplex.hpp
- Geometry:
- Point:
- geometry/point.hpp
- Quarternion:
- geometry/quaternion.hpp
- Spherical Coordinates:
- geometry/spherical.hpp
- Segments:
- geometry/segments.hpp
- Convex Hull:
- geometry/convex-hull.hpp
- 3D Hull:
- geometry/3d-hull.hpp
- Angular Sort:
- geometry/angular-sort.hpp
- Convex Hull Tangent:
- geometry/convex-tangent.hpp
- Convex Polygon Minkowski Sum:
- geometry/minkowski-sum.hpp
- Point In Polygon:
- geometry/point-inclusion.hpp
- Convex Version:
- geometry/convex-inclusion.hpp
- Offline Multiple Points Version:
- geometry/multi-inclusion.hpp
- Closest Pair:
- geometry/closest-pair.hpp
- Minimum Enclosing Circle:
- geometry/min-enclosing-circle.hpp
- Delaunay Triangulation:
- geometry/delaunay.hpp
- Quadratic Time Version:
- geometry/delaunay-slow.hpp
- Half Plane Intersection:
- geometry/half-plane-intersection.hpp
- Strings:
- Knuth-Morris-Pratt Algorithm:
- strings/kmp.hpp
- Aho-Corasick Automaton:
- strings/ahocorasick.hpp
- Suffix Array:
- strings/suffix-array.hpp
- Suffix Tree:
- strings/suffix-tree.hpp
- Cocke-Younger-Kasami Algorithm:
- strings/cyk.hpp
- Z Value:
- strings/z-value.hpp
- Manacher's Algorithm:
- strings/manacher.hpp
# - Minimum Rotation:
# - strings/min-rotation.hpp
- Lyndon Factorization:
- strings/duval.hpp
- Palindromic Tree:
- strings/palindromic-tree.hpp
# - Debug List:
# - misc/debug-list.md