ACM-ICPC-Preparation

ACM-ICPC Preparation Guide

MIT License

Stars
2.1K

ACM-ICPC Preparation

This curriculum has been developed to learn Algorithms to use in Competitive Programming, but can also be used for:

  • Practicing for Interviews
  • Improving Algorithmic Thinking
  • Practicing for College Classes

Prerequisites:

  • To know at least one programming language. (You have to be able to use the language efficiently.)

The concept of this repository is to have well-structured content divided into parts that one can follow even if they are busy. Here we collected sources we find well prepared to learn the proposed topics. The curriculum has different data structures and algorithms.

Estimated time required for a week is 6-7 hours. (To complete the curriculum in the given time)

Basic usage guide: Using this repository depends on what the user wants to do with it. Here we are suggesting the following for people who want to slowly gain knowledge of the topics while continuing their studies etc.:

  1. Check out the written or video sources provided for a given topic depending on the preference. Go over as many as needed to gain a good understanding of the topic.
  2. Without checking the source code, try to replicate the algorithm or data structure on your own.
  3. When stuck or when done, look at the source codes provided, and compare them with yours to see what might be your mistake. Try to fix it.
  4. After you feel comfortable with the code, try to solve the given problems.
  5. When you are done with solving or are stuck at some point, check given solutions and try to understand your mistake or see if a better approach exists.

Resources

Here are some of the websites/tools that we use through this curriculum:

Contribution

If you have anything to add, do not hesitate to offer! You can check Code of Conduct. You can submit a PR or an issue; I will try to personally review all.

Topics

Here are the topics we currently include in the curriculum.

Data Structures

  • Stacks
  • Queues
  • Priority queue
  • Hashmap
  • Linked List
  • Trees
  • Heaps
  • Advanced Trees
    • Tries
    • Segment trees
    • Fenwick tree or Binary indexed trees
    • RMQ
  • SQRT Decomposition
  • Disjoint Data Structure
  • C++ STL (optional)

Algorithms

  • Number Theory

    • Prime Numbers (Sieve of Eratosthenes)
    • GCD and LCM Euclids Algorithm
    • Modular Exponentiation
    • Long arithmetic (Multi, Add)
    • Efficient Prime Factorization
  • Combinatorics (Probability-Combinations-Permutations-Matrix..)

  • Computational Geometry

    • Primitive Operations
      • Intuition
      • Polygon Inside, Outside
      • Implementing CCW
      • Immutable Point ADT
    • Convex Hull
    • Closest pair problem
    • Line intersection
  • Sort

    • QuickSort
    • Counting Sort
    • Merge Sort
  • Search

    • Binary Search
    • Ternary Search
  • Graph Theory

    • Depth First Search (DFS)
    • Breadth First Search (BFS)
    • Dijkstras Shortest Path
    • Minimum Spanning Tree
    • Ford Bellman
    • Floyd Warshall
    • LCA (Lowest Common Ancestor)
    • Max Flow / Min Cut
  • Dynamic Programming

    • Knapsack
    • Matrix chain multiplication
    • Coin Change
    • Kadane
    • Longest increasing Subsequence (with RMQ)
  • Strings

    • Z algorithm
    • Suffix Trees/Arrays
    • Knuth-Morris-Pratt Algorithm (KMP)
    • Rabin-Karp Algorithm
    • Hash
  • Bit Manipulation

  • Game theory

    • Nim game
    • Grundy numbers
    • Sprague-Grundy theorem
  • Optional Advanced Algorithms

    • AVL Trees
    • Graph Coloring
    • Mo's Algorithm
    • Palindromic Tree
    • Heavy Light Decomposition
    • Dynamic Programming by Profile
    • Rod Cutting
    • Topological Sorting
    • DP with Bitmask - Dynamic Programming
    • Diobhantine Equation - Math
    • Flood Fill - Graph

Curriculum

Week Topics Optional Topics
**Heads Up ** Big O Notation
1.Week Prime Numbers (Sieve of Eratosthenes)Efficient Prime FactorizationModular Exponentiation
2.Week GCD and LCM Euclids AlgorithmLong arithmetic (Multi, Sum, Div, Sub) C++ STL:VectorC++ STL:PairsC++ STL:Iterators
3.Week QuickSortCounting Sort C++ STL:StringC++ STL:SetC++ STL:Map
4.Week Merge SortBinary Search Ternary Search
5.Week Queue (DS)Stack (DS)Breadth First SearchDepth First Search C++ STL: QueueC++ STL: Stack
6.Week Linked List (DS)Dijkstras Shortest PathMinimum Spanning Tree (MST)Floyd Warshall Cycle Detection (Union Find)
7.Week KnapsackCoin ChangeKadane
8.Week Questions from previous topics
9.Week Trees (DS)Segment Trees (DS)Range Minimum Query (RMQ)Lowest Common Ancestor (LCA) Topological Sorting
10.Week Ford BellmanMax Flow / Min CutLongest increasing Subsequence (with RMQ) Heavy Light Decomposition
11.Week Primitive OperationsIntuitionPolygon Inside, OutsideImplementing CCWImmutable Point ADTConvex HullClosest pair problemLine intersection
12.Week Tries (DS)Suffix Trees/Arrays (DS)Knuth-Morris-Pratt Algorithm (KMP)Rabin-Karp Algorithm
13.Week Heaps (DS)Priority queue (DS)Combinatorics
14.Week Z algorithmHashDisjoint Data Structure (DS)
15.Week Matrix chain multiplicationSQRT Decomposition (DS) Mo's AlgorithmRod Cutting
16.Week Questions from previous topics
17.Week Nim gameGrundy numbers
18.Week Sprague-Grundy theoremFenwick tree or Binary indexed trees (DS)
19.Week Bit Manipulation Palindromic TreeAVL Trees
20.Week Heavy Light DecompositionDynamic Programming by Profile Graph Coloring

Contributers