-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteamnote.aux
More file actions
75 lines (75 loc) · 7.8 KB
/
teamnote.aux
File metadata and controls
75 lines (75 loc) · 7.8 KB
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
\relax
\@writefile{toc}{\contentsline {section}{\numberline {1}Setting}{1}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Default code}{1}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/setting/default\textendash code.cpp}{1}{}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {2}Math}{2}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Extended Euclidean Algorithm}{2}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/extended\textendash euclidean.cpp}{2}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Primality Test}{2}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/primality\textendash test.cpp}{2}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Integer Factorization (Pollard's rho)}{2}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/pollard\textendash rho.cpp}{2}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}Chinese Remainder Theorem}{2}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/crt.cpp}{2}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.5}Query of nCr mod M in $O(Q+M)$}{2}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/binomial.cpp}{2}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.6}pelindrome number}{3}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/pelindrome.cpp}{3}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.7}Matrix Pow}{3}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/matrix\textendash mul\textendash pow.cpp}{3}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.8}Catalan, Derangement, Partition, 2nd Stirling}{3}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.9}Matrix Operations}{3}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/matrix\textendash operations.cpp}{3}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.10}Gaussian Elimination}{3}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/gaussian.cpp}{3}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.11}Permutation and Combination}{4}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/permutation.cpp}{4}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/combination.cpp}{4}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.12}Integer Partition}{4}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/integer\textendash partition.cpp}{4}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.13}Xudyh's Sieve}{4}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/math/xudyh\textendash sieve.cpp}{4}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.14}Lifting The Exponent}{4}{}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {3}Data Structure}{4}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Lazy Segment Tree}{4}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/data\textendash structure/lazy\textendash segment\textendash tree.cpp}{4}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Persistent Segment Tree}{5}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/data\textendash structure/persistent\textendash segment\textendash tree.cpp}{5}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}Strongly Connected Component}{5}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/data\textendash structure/scc.cpp}{5}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4}Fenwick Tree}{5}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/data\textendash structure/fenwick\textendash tree.cpp}{5}{}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {4}DP}{6}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}LIS}{6}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/dp/lis.cpp}{6}{}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {5}Graph}{6}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Dijkstra}{6}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/graph/dijkstra.cpp}{6}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}LCA}{6}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/graph/lca.cpp}{6}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3}Centroid Decomposition}{6}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/graph/centroid\textendash decomposition.cpp}{6}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4}Minimum Spanning Tree}{7}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/graph/mst.cpp}{7}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.5}Offline Dynamic Connectivity}{7}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/graph/offline\textendash dynamic\textendash connectivity.cpp}{7}{}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {6}String}{7}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}KMP}{7}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/string/kmp.cpp}{7}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2}Z Algorithm}{8}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/string/z.cpp}{8}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3}LCS}{8}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/string/lcs.cpp}{8}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4}Trie}{8}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/string/trie.cpp}{8}{}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7}Geometry}{8}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}CCW}{8}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/geometry/ccw.cpp}{8}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Line Intersection}{8}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/geometry/line\textendash intersection.cpp}{8}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3}Point in Nonconvex Polygon}{9}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/geometry/point\textendash in\textendash nonconvex\textendash polygon.cpp}{9}{}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {8}Hash}{9}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1}Basic Hash}{9}{}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{src/hash/basic\textendash hash.cpp}{9}{}\protected@file@percent }
\gdef \@abspage@last{9}