What are the "must known" algorithms for online programming contests?

Hello all,
I’ve been practicing at Codechef for a while and now I’m gradually moving toward medium/hard problems. However many algorithms at these levels are very difficult to predict, and I was always stuck because I’m not aware of them. So I open this topic, my hope is to have a wish-list of most used algorithm for online programming contest that I can look up for reference. Here is my short-list up to now:

  1. Segment tree (with lazy propagation)
  2. Interval Tree
  3. Binary Indexed Tree
  4. Fast Modulo Multiplication (Exponential Squaring)
  5. Heuristic Algorithms
  6. KMP string searching
  7. Manacher’s Algorithm
  8. Union Find/Disjoint Set
  9. Trie
  10. Prime Miller Rabin
  11. Matrix Recurrence + Fast Modulo Multiplication for counting
  12. Stable Marriage Problem
  13. Extended Euclid’s algorithm
  14. Ternary Search
  15. Fast Fourier Transform for fast polynomial multiplication
  16. Djikstra’s algorithm, Bellman-ford algorithm, Floyd-Warshall Algorithm
  17. Prim’s Algorithm, Kruskal’s Algorithm
  18. RMQ, LCA
  19. Flow related algorithms, assignment problem, Hungarian algorithm
  20. Bipartite matching algorithms
  21. Heavy-light decomposition
  22. Sweep line algorithm
  23. Z algorithm
  24. Convex Hull
  25. Suffix Arrays
  26. LCP
  27. Suffix Tree
  28. Gaussian Elimination
  29. Numerical Integration/Differentiation
  30. Line Clipping
  31. Advanced Maths Ad-Hoc problems
  32. Aho–Corasick string matching algorithm;
  33. Calculate nCr % M Lucas’s Theorem
  34. Heavy Light decomposition in trees
  35. Inverse Modulo operations
  36. Pollard Rho Integer Factorization
  37. Catalan Numbers

Add some more…

113 Likes
  • Euclid’s GCD Algorithm
  • Extended Euclid’s algorithm
  • Binary Search, Ternary Search
  • Sieve of Eratosthenes for finding primes
  • Fast Fourier Transformation for fast polynomial multiplication
  • Graph algorithms - BFS, DFS, finding connected components
  • Djikstra’s algorithm, Bellman-ford algorithm, Floyd-Warshall Algorithm
  • Prim’s Algorithm, Kruskal’s Algorithm
  • RMQ, LCA
  • Flow related algorithms, assignment problem, Hungarian algorithm
  • Bipartite matching algorithms
  • Heavy-light decomposition
  • Sweep line algorithm
  • Z algorithm
27 Likes
  • Kruskal’s or Prim’s algorithm
  • Dijkstra’s algorithm
  • Convex Hull

Edit: It would be a nice idea to group these algorithms. For example, KMP algortihm, Aho-Corasick algorithm, Rabin-Karp algorithm all fall under the category of String Match, and hence should be put under the category of string match algorithms; and so on for other algorithms as well.

Grouping would help newbies like me to explore a particular group and learn all the algorithms in that.

13 Likes

Hello,

I can add a few more topics:

  • Suffix Arrays;
  • LCP;
  • Heuristic Algorithms;
  • Gaussian Elimination;
  • Numerical Integration/Differentiation;
  • Line Clipping;
  • Advanced Maths Ad-Hoc problems;
  • Aho–Corasick string matching algorithm;
  • Knuth–Morris–Pratt algorithm;

Sadly, this list is endless and the hardest part is to understand which of these topics need to be applied to solve a given problem.
As a bonus, you can have variations of these standard topics which may require mixing some of these concepts.

I will edit the above post with all these suggestions, except some of the suggestions given by @n2n_, since putting on the same bag, FFT and Sieve of Eratosthenes for finding primes, seems a bit overkill to me, as the second one is a basic algorithm and not needed to advanced problems I would say :slight_smile:

Best regards,

Bruno

13 Likes

It will be great if we can build on this to give links of useful resources against each algorithm and also mention problems which require these algorithms to be solved.

11 Likes

@admin nice thought…it will be very very helpful :slight_smile:

1 Like

@admin: Great suggestion. Will do when I have time :wink:

2 Likes

Should we make this as a community wiki and people can keep adding and editing it there? The down side is that the votes that you have gathers will be lost. Or we can create another community wiki with the contents of this thread and the community can edit it there. What say?

5 Likes

@admin: Please do, I don’t mind those votes as long as it will help the community ;).

12 Likes

A very useful link ,list in-dept analysis of basic to advanced algorithm ,many which are listed above ,very helpful read http://e-maxx.ru/algo/ though in russian but google translator might help. :slight_smile:

18 Likes

Hello @all and especially @admin,

Is the idea of linking all of the above topics to some resource with a tutorial and suggested problems still up?

Because if it is, I can try to write about the topic 3. Fast Modulo Multiplication (Exponential Squaring), as it is a topic I master relatively well, and, when I’m finished with my tutorial I can provide the link here :smiley:

What do you think?

Best regards,

Bruno

9 Likes

@admin: Although many of the things listed above are covered in society like Topcoder, codeforce as well there are content available at the internet too. The more detail list is available at (http://www.codechef.com/getting-started -> List of Topics for programming Competitions). Again if the things are missing and we have better solutions, we can write it under the tutorial section in codechef.

I have added link to my tutorial about point 3 on the original post… If you find it good enough feel free to add it to codechef for schools page as well! It would be an honor :smiley:

1 Like

http://www.personal.kent.edu/~rmuhamma/Algorithms/algorithm.html
i’ve found it very useful

7 Likes

Added link to point 12 :slight_smile:

I’d suggest further adding

Some useful resources : come on code on

Some cool problems : Nikhil Garg’s blog on quora

7 Likes

This website can also of great help in learning basic algorithms: http://www.learnalgorithms.in/

8 Likes

Great job!

1 Like

We still have much more to do :smiley:
And me, personally, I have way much more to learn :stuck_out_tongue:

I’m bringing this back up to let you all know that I will use my own problem, MARBLESGF to write a tutorial on BIT/Fenwick Trees :slight_smile: I will post it when its complete and also provide link here :smiley:

1 Like