-
Notifications
You must be signed in to change notification settings - Fork 22
/
vasito.tex
222 lines (206 loc) · 6.8 KB
/
vasito.tex
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
%"The PDF file may contain up to 25 pages of reference material, single-sided, letter or A4 size, with text and illustrations readable by a person with correctable eyesight without magnification from a distance of 1/2 meter."
\input{preamble.tex}
\begin{document}
% Gracias Demetrio
\def\title{Universidad Nacional de Córdoba - Gracias Demetrio}
.\\[0.2cm]
\centering{\LARGE\textbf{Gracias Demetrio}} \\[0.5cm]
\centering{\includegraphics[width=5.5cm]{img/vasito.jpg}}
\tableofcontents\newpage
\section{Data structures}
\subsection{Segment tree}
\cppfile{data_structures/segment_tree.cpp}
\subsection{Segment tree - Lazy propagation}
\cppfile{data_structures/segment_tree_lazy.cpp}
\subsection{Segment tree - Persistence}
\cppfile{data_structures/segment_tree_persistent.cpp}
\subsection{Segment tree - 2D}
\cppfile{data_structures/segment_tree_2d.cpp}
\subsection{Sparse table (static RMQ)}
\cppfile{data_structures/sparse_table.cpp}
\subsection{Fenwick tree}
\cppfile{data_structures/fenwick_tree.cpp}
\subsection{Wavelet tree}
\cppfile{data_structures/wavelet_tree.cpp}
\subsection{STL extended set}
\cppfile{data_structures/stl_extended_set.cpp}
\subsection{STL rope}
\cppfile{data_structures/stl_rope.cpp}
\subsection{Treap (as BST)}
\cppfile{data_structures/treap.cpp}
\subsection{Treap (implicit key)}
\cppfile{data_structures/treap_implicit.cpp}
\subsection{Treap (with node father)}
\cppfile{data_structures/treap_implicit_father.cpp}
\subsection{Link-Cut tree}
\cppfile{data_structures/link_cut_tree.cpp}
\subsection{Convex hull trick (static)}
\cppfile{data_structures/convexhull_trick.cpp}
\subsection{Convex hull trick (dynamic)}
\cppfile{data_structures/convexhull_trick_dynamic.cpp}
\subsection{Gain-cost-set}
\cppfile{data_structures/gain_cost_set.cpp}
\subsection{Disjoint intervals}
\cppfile{data_structures/disjoint_intervals.cpp}
\section{Graphs}
\subsection{Topological sort}
\cppfile{graphs/toposort.cpp}
\subsection{Kruskal (+ Union-Find)}
\cppfile{graphs/kruskal.cpp}
\subsection{Dijkstra}
\cppfile{graphs/dijkstra.cpp}
\subsection{Bellman-Ford}
\cppfile{graphs/bellman_ford.cpp}
\subsection{Floyd-Warshall}
\cppfile{graphs/floyd_warshall.cpp}
\subsection{Strongly connected components (+ 2-SAT)}
\cppfile{graphs/tarjan_2sat.cpp}
\subsection{Articulation - Bridges - Biconnected}
\cppfile{graphs/articulation_bridges_biconnected.cpp}
\subsection{Chu-Liu (minimum spanning arborescence)}
\cppfile{graphs/chu_liu.cpp}
\subsection{LCA - Binary Lifting}
\cppfile{graphs/lca.cpp}
\subsection{Heavy-Light decomposition}
\cppfile{graphs/hld.cpp}
\subsection{Centroid decomposition}
\cppfile{graphs/centroid.cpp}
\subsection{Parallel DFS}
\cppfile{graphs/parallel_dfs.cpp}
\subsection{Eulerian path}
\cppfile{graphs/eulerian_path.cpp}
\subsection{Dynamic connectivity}
\cppfile{graphs/dynamic_connectivity.cpp}
\subsection{Edmond's blossom (matching in general graphs)}
\cppfile{graphs/edmonds_blossom.cpp}
\section{Math}
\subsection{Identities}
{
$C_n = \frac{2(2n-1)}{n+1} C_{n-1}$
$C_n = \frac{1}{n+1} \binom{2n}{n}$
$C_n \sim \frac{4^n}{n^{3/2}\sqrt{\pi}}$
$\sigma(n) = O(\log(\log(n)))$ (number of divisors of $n$)
$F_{2n+1} = F_{n}^2 + F_{n+1}^2$
$F_{2n} = F_{n+1}^2 - F_{n-1}^2$
$\sum_{i=1}^n F_i = F_{n+2}-1$
$F_{n+i}F_{n+j} - F_nF_{n+i+j} = (-1)^n F_iF_j$
(Möbius Inv. Formula)
Let $g(n) = \sum_{d\mid n} f(d)$, then $f(n)=\sum{d\mid n} g(d) \mu\left(\frac{n}{d})\right)$.
}
\subsection{Theorems}
\cppfile{math/theorems.txt}
\subsection{Integer floor division}
\cppfile{math/floor_division.cpp}
%\subsection{Extended Euclid} % allready in diophantine
%\cppfile{math/extended_euclid.cpp}
\subsection{Sieve of Eratosthenes}
\cppfile{math/sieve.cpp}
\subsection{Generate divisors}
\cppfile{math/divisors.cpp}
\subsection{Pollard's rho}
\cppfile{math/pollard_rho.cpp}
\subsection{Simpson's rule}
\cppfile{math/simpson.cpp}
\subsection{Polynomials}
\cppfile{math/polynomial.cpp}
\subsection{Bairstow}
\cppfile{math/bairstow.cpp}
\subsection{Fast Fourier Transform}
\cppfile{math/fft.cpp}
\subsection{Fast Hadamard Transform}
\cppfile{math/fht.cpp}
\subsection{Karatsuba}
\cppfile{math/karatsuba.cpp}
\subsection{Diophantine}
\cppfile{math/diophantine.cpp}
\subsection{Modular inverse}
\cppfile{math/inversemod.cpp}
\subsection{Chinese remainder theorem}
\cppfile{math/crt.cpp}
\subsection{Mobius}
\cppfile{math/mobius.cpp}
\subsection{Matrix exponentiation}
\cppfile{math/matrix_fast_pow.cpp}
\subsection{Matrix reduce and determinant}
\cppfile{math/matrix_reduce.cpp}
\subsection{Simplex}
\cppfile{math/simplex.cpp}
\subsection{Discrete log}
\cppfile{math/discrete_log.cpp}
\subsection{Berlekamp Massey}
\cppfile{math/berlekamp_massey.cpp}
\subsection{Linear Rec}
\cppfile{math/linear_rec.cpp}
\subsection{Tonelli Shanks}
\cppfile{math/tonelli_shanks.cpp}
\section{Geometry}
\subsection{Point}
\cppfile{geometry/point.cpp}
\subsection{Line}
\cppfile{geometry/line.cpp}
\subsection{Circle}
\cppfile{geometry/circle.cpp}
\subsection{Polygon}
\cppfile{geometry/polygon.cpp}
\subsection{Plane}
\cppfile{geometry/plane.cpp}
\subsection{Radial order of points}
\cppfile{geometry/radial_order.cpp}
\subsection{Convex hull}
\cppfile{geometry/convex_hull.cpp}
\subsection{Dual from planar graph}
\cppfile{geometry/planar_graph_dual.cpp}
\subsection{Halfplane intersection}
\cppfile{geometry/halfplanes.cpp}
\section{Strings}
\subsection{KMP}
\cppfile{strings/kmp.cpp}
\subsection{Z function}
\cppfile{strings/z_function.cpp}
\subsection{Manacher}
\cppfile{strings/manacher.cpp}
\subsection{Aho-Corasick}
\cppfile{strings/aho_corasick.cpp}
\subsection{Suffix automaton}
\cppfile{strings/suffix_automaton.cpp}
\subsection{Palindromic Tree}
\cppfile{strings/palindromic_tree.cpp}
\subsection{Suffix array (shorter but slower)}
\cppfile{strings/suffix_array_slow.cpp}
\subsection{Suffix array}
\cppfile{strings/suffix_array.cpp}
\subsection{LCP (Longest Common Prefix)}
\cppfile{strings/lcp.cpp}
\subsection{Suffix Tree (Ukkonen's algorithm)}
\cppfile{strings/suffix_tree.cpp}
\subsection{Hashing}
\cppfile{strings/hashing.cpp}
\subsection{Hashing with ll (using \_\_int128)}
\cppfile{strings/hashing_128.cpp}
\section{Flow}
\subsection{Matching (slower)}
\cppfile{flow/matching.cpp}
\subsection{Matching (Hopcroft-Karp)}
\cppfile{flow/hopcroft_karp.cpp}
\subsection{Hungarian}
\cppfile{flow/hungarian.cpp}
\subsection{Dinic}
\cppfile{flow/dinic.cpp}
\subsection{Min cost max flow}
\cppfile{flow/min_cost_max_flow.cpp}
\section{Other}
\subsection{Mo's algorithm}
\cppfile{other/mos_algorithm.cpp}
\subsection{Divide and conquer DP optimization}
\cppfile{other/divide_and_conquer_dp.cpp}
\subsection{Dates}
\cppfile{other/dates.cpp}
\subsection{C++ stuff}
\cppfile{other/cpp_stuff.cpp}
\subsection{Interactive problem tester template}
\cppfile{other/interactive_tester.py}
\subsection{Max number of divisors up to 10\textsuperscript{n}}
\cppfile{other/hcn.txt}
\subsection{Template}
\cppfile{other/template.cpp}
\end{document}