Competitive Programming Syllabus GitHub
Competitive Programming Syllabus GitHub
String Algorithms
Substring search
KnuthMorrisPratt algorithm (Problems - NHAY, PERIOD on SPOJ)
Suggested Reading - Cormen chapter on Strings.
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=stringSearching
Aho Corasick algorithm
Problems - WPUZZLES on SPOJ
Suffix Arrays
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 1/14
Suffix Trees
O(n) construction of Suffix trees using Ukkonon’s algorithm
O(n) construction of Suffix Trees if provided with Suffix Arrays using Farach's algorithm
Other
Suffix Automata - O(n) Suffix Automaton construction.
Dictionary Of Basic Factors - O(n * logn) method of DBF construction using Radix Sort.
Manacher’s algorithm to find length of palindromic substring of a string centered at a posi
for each position in the string. Runtime -> O(n).
Searching and preprocessing Regular Expressions consisting of '?' and '*'
Graphs
Basic Graphs
Representation of graphs as adjacency list, adjacency matrix, incidence matrix and edge lis
and uses of different representations in different scenarios
Breadth First Search (Problems - PPATH, ONEZERO, WATER on SPOJ)
Depth First Search
Strongly Connected Components (TOUR and BOTTOM on SPOJ)
Biconnected Components, Finding articulation points and bridges (RELINETS, PT07A on SP
Dijkstra algorithm (SHPATH on SPOJ)
Floyd Warshall algorithm (COURIER on SPOJ)
Minimum Spanning Tree (BLINNET on SPOJ)
Flood-fill algorithm
Topological sort
Bellman-Ford algorithm.
Euler Tour/Path (WORDS1 on SPOJ)
Suggested reading for most of the topics in Graph algorithms - http://www.topcoder.com/
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 2/14
12/6/21, 7:16 PM Competitive Programming Syllabus · GitHub
Dynamic Programming.
Suggested Reading - Dynamic Programming(DP) as a tabulation method
Cormen chapter on DP
Standard problems (you should really feel comfortable with these types)
http://www.topcoder.com/stat?
c=problem_statement&pm=8570&rd=12012&rm=269199&cr=7581406
http://www.topcoder.com/stat?c=problem_statement&pm=10765&rd=14183
State space reduction
http://www.topcoder.com/stat?c=problem_statement&pm=10902
http://www.topcoder.com/stat?c=problem_statement&pm=3001
http://www.topcoder.com/stat?
c=problem_statement&pm=8605&rd=12012&rm=269199&cr=7581406
Solving in the reverse - easier characterizations looking from the end
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 3/14
http://www.spoj.pl/problems/MUSKET
12/6/21, 7:16 PM Competitive Programming Syllabus · GitHub
http://www.topcoder.com/stat?c=problem_statement&pm=784
Strategies and expected values
http://www.topcoder.com/stat?c=problem_statement&pm=10765&rd=14183
http://www.topcoder.com/stat?c=problem_statement&pm=10806
http://www.topcoder.com/stat?c=problem_statement&pm=7828
http://www.topcoder.com/stat?c=problem_statement&pm=7316
DP on probability spaces
http://www.topcoder.com/stat?c=problem_statement&pm=7422
http://www.topcoder.com/stat?c=problem_statement&pm=2959
http://www.topcoder.com/stat?c=problem_statement&pm=10335
DP on trees
http://www.topcoder.com/stat?c=problem_statement&pm=10800
http://www.topcoder.com/stat?c=problem_statement&pm=10737
http://www.topcoder.com/stat?
c=problem_solution&rm=266678&rd=10958&pm=8266&cr=7581406
DP with data structures
http://www.spoj.pl/problems/INCSEQ/
http://www.spoj.pl/problems/INCDSEQ/
http://www.spoj.pl/problems/LIS2/
http://www.topcoder.com/stat?c=problem_statement&pm=1986
Symmetric characterization of DP state
http://www.topcoder.com/stat?c=problem_statement&pm=8610
A good collection of problems
http://codeforces.com/blog/entry/325
http://problemclassifier.appspot.com/index.jsp?search=dp
Greedy
Chapter on Greedy algorithms in Cormen
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=greedyAlg
Problems - refer to the topcoder tutorial.
Number Theory
Modulus arithmetic
Basic postulates (Including modular linear equations, Continued fraction and Pell's equatio
Suggested Reading -
Chapter 1 from Number Theory for Computing by SY Yan (Recommended)
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 4/14
31.1, 31.3 and 31.4 from Cormen
12/6/21, 7:16 PM Competitive Programming Syllabus · GitHub
http://projecteuler.net/index.php?section=problems&id=65
http://projecteuler.net/index.php?section=problems&id=66
http://www.topcoder.com/stat?c=problem_statement&pm=6408&rd=9826
http://www.topcoder.com/stat?c=problem_statement&pm=2342
Primality tests
Deterministic O(sqrt(n)) approach
Probabilistic primality tests - Fermat primality test, Miller-Rabin Primality test
Suggested Reading -
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=primalityTesting
Cormen 31.8
2.2 from Number Theory by SY Yan
Problems
PON, PRIC, SOLSTRAS on SPOJ
http://www.topcoder.com/stat?c=problem_statement&pm=4515
Prime generation techniques - Sieve of Erastothenes (PRIME1 on SPOJ)
Integer Factorization
Naive O(sqrt(n)) method
Pollard Rho factorization
Suggested Reading
2.3 from Number Theory SY Yan
31.9 Cormen
Problems -
http://www.topcoder.com/stat?c=problem_statement&pm=2986&rd=5862
http://www.spoj.pl/problems/DIVSUM2/
http://www.topcoder.com/stat?c=problem_statement&pm=4481&rd=6538
Other
Stirling numbers
Wilson theorem
nCr % p in O(p) preprocess and O(log n) query
Lucas Theorem
Suggested Reading for Number Theory -
Number theory for computing by Song Y Yan (Simple book describing concepts in det
Concepts are also superficially covered in Chapter 31 of Introduction to Algorithms by
Cormen
http://www.codechef.com/wiki/tutorial-number-theory
http://www.algorithmist.com/index.php/Category:Number_Theory
Problems on Number Theory -
http://www.algorithmist.com/index.php/Category:Number_Theory
http://problemclassifier.appspot.com/index.jsp?search=number&usr=
Probability
Basic probability and Conditional probability
http://www.spoj.pl/problems/CT16E/
http://www.spoj.pl/problems/CHICAGO/
Random variables, probability generating functions
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 6/14
Mathematical expectation + Linearity of expectation
12/6/21, 7:16 PM Competitive Programming Syllabus · GitHub
Counting
Basic principles - Pigeon hole principle, addition, multiplication rules
Problems
http://acm.timus.ru/problem.aspx?space=1&num=1690
http://www.topcoder.com/stat?c=problem_statement&pm=10805
Suggested readings
http://en.wikipedia.org/wiki/Combinatorial_principles
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=combinatorics
http://www.maa.org/editorial/knot/pigeonhole.html
Inclusion-exclusion
http://en.wikipedia.org/wiki/Inclusion–exclusion_principle
http://www.topcoder.com/stat?c=problem_statement&pm=4463&rd=6536
http://www.topcoder.com/stat?c=problem_statement&pm=10238
Special numbers
Stirling, eurlerian, harmonic, bernoulli, fibonnacci numbers
http://en.wikipedia.org/wiki/Stirling_number
http://en.wikipedia.org/wiki/Eulerian_numbers
http://en.wikipedia.org/wiki/Harmonic_series\_(mathematics)
http://en.wikipedia.org/wiki/Bernoulli_number
http://en.wikipedia.org/wiki/Fibonnaci_numbers
Concrete mathematics by Knuth
Suggested problems
http://www.topcoder.com/stat?c=problem_statement&pm=1643
http://www.topcoder.com/stat?c=problem_statement&pm=8202&rd=11125
http://www.topcoder.com/stat?c=problem_statement&pm=8725
http://www.topcoder.com/stat?c=problem_statement&pm=2292&rd=10709
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 7/14
Advanced counting techniques - Polya counting, burnsides lemma
12/6/21, 7:16 PM Competitive Programming Syllabus · GitHub
http://petr-mitrichev.blogspot.com/2008/11/burnsides-lemma.html
Problems
http://www.topcoder.com/stat?c=problem_statement&pm=9975
http://www.spoj.pl/problems/TRANSP/
Game theory
Basic principles and Nim game
Sprague grundy theorem, grundy numbers
Suggested readings
http://en.wikipedia.org/wiki/Sprague%E2%80%93Grundy_theorem
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=algorithmGames
http://www.ams.org/samplings/feature-column/fcarc-games1
http://www.codechef.com/wiki/tutorial-game-theory
Suggested problems
http://www.topcoder.com/stat?c=problem_statement&pm=3491&rd=6517
http://www.topcoder.com/stat?c=problem_statement&pm=3491&rd=6517
Hackenbush
http://en.wikipedia.org/wiki/Hackenbush
http://www.ams.org/samplings/feature-column/fcarc-partizan1
Suggested problems
http://www.cs.caltech.edu/ipsc/problems/g.html
http://www.spoj.pl/problems/PT07A/
Linear Algebra
Matrix Operations
Addition and subtraction of matrices
Cormen 28.1
Multiplication (Strassen's algorithm), logarithmic exponentiation
Cormen 28.2
Linear Algebra by Kenneth Hoffman Section 1.6
Problems
http://uva.onlinejudge.org/external/111/11149.html
28.4 Cormen
Linear Algebra by Kenneth Chapter 1
Problems
http://www.topcoder.com/stat?c=problem_statement&pm=8174
http://www.topcoder.com/stat?c=problem_statement&pm=6407&rd=9986
http://www.topcoder.com/stat?c=problem_statement&pm=8587
HIGH on Spoj
Polynomials
Roots of a polynomial (Prime factorization of a polynomial, Integer roots of a polynomial, A
real roots of a polynomial)
http://www.topcoder.com/stat?c=problem_statement&pm=8273&rd=10798
POLYEQ , ROOTCIPH on Spoj
Lagrange Interpolation
http://www.topcoder.com/stat?c=problem_statement&pm=10239
http://www.topcoder.com/stat?c=problem_statement&pm=8725
Permutation cycles
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 9/14
12/6/21, 7:16 PM Competitive Programming Syllabus · GitHub
Group Theory
Burnside Lemma
Polya’s theorem
Suggested Reading
Hernstein's topics in algebra
http://petr-mitrichev.blogspot.com/2008/11/burnsides-lemma.html
Problems
TRANSP on spoj
http://www.topcoder.com/stat?c=problem_statement&pm=9975
Generating functions
Suggested Reading
Herbert Wilf's generating functionology
Robert Sedgewick and Flajoulet's Combinatorial analysis
Data Structures
Basic
Arrays/Stacks/Queues
Problems
https://www.spoj.pl/problems/STPAR/
https://www.spoj.pl/problems/SHOP/
https://www.spoj.pl/problems/WATER/
Reading:
CLRS: section 10.1
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=dataStructures
Hash Tables
Problems
https://www.spoj.pl/problems/HASHIT/
https://www.spoj.pl/problems/CUCKOO/
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 10/14
Reading: CLRS: Chapter 11, Mark Allen Weies Chapter 5
12/6/21, 7:16 PM Competitive Programming Syllabus · GitHub
Problems - https://www.spoj.pl/problems/CTRICK/
Binary/n-ary trees
Reading
CLRS: section 10.4
CLRS: Chapter 12
Mark Allen Weies Chapter 4
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=binarySearchRedBlack
Heaps
Problems
https://www.spoj.pl/problems/PRO/
https://www.spoj.pl/problems/EXPEDI/
Reading : Mark Allen Weies Chapter 6
Trie
Problems
https://www.spoj.pl/problems/MORSE/
https://www.spoj.pl/problems/EMOTICON/
Reading
Problems
https://www.spoj.pl/problems/GSS1/
Reading - http://www.topcoder.com/tc?
module=Static&d1=tutorials&d2=lowestCommonAncestor
AVL Trees
Problem - https://www.spoj.pl/problems/ORDERS/
Miscellaneous
Splay Trees
B/B+ Trees
k-d Trees
Red-black Trees
Skip List
Binomial/ Fibonacci heaps
Exercices
https://www.spoj.pl/problems/LAZYPROG/ (Hint: Heaps)
https://www.spoj.pl/problems/HELPR2D2/ (Hint: Interval Trees)
https://www.spoj.pl/problems/SAM/ (Hint: Heaps)
https://www.spoj.pl/problems/PRHYME/ (Hint: Trie)
https://www.spoj.pl/problems/HEAPULM/ (Hint: Interval Trees)
https://www.spoj.pl/problems/CORNET/ (Hint: Disjoint)
https://www.spoj.pl/problems/EXPAND/
https://www.spoj.pl/problems/WPUZZLES/
https://www.spoj.pl/problems/LIS2/
Sudoku Problem
Tiling Problem
15 puzzle.
https://gist.github.com/sharmaeklavya2/8aa2830f3a46a3f46ff249b4e1f07767 14/14