Jaserdy's blog

By Jaserdy, history, 19 months ago, translation, In English

I have a question for people who know a lot of algorithms. If you see a problem and understand what algorithm you need to solve this problem, can you remember this algorithm?

  • Vote: I like it
  • -9
  • Vote: I do not like it

| Write comment?
»
19 months ago, # |
  Vote: I like it +3 Vote: I do not like it

To your question yes, I do remember every algorithm I know, sometimes I don't remember the implementation but it is easy to remember the idea so you can implement it, but actually I've never try to memorize an algorithm by heart, I just understand it, get an intuitive idea of it, implement it and solve some problems about the algorithm. And by the way, the "algorithm implementation" is the easy part of the problem, the hard one is to recognize what should you use and do the correct observations.

  • »
    »
    19 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    So, you understand the algorithm and can remember and write it?

    • »
      »
      »
      19 months ago, # ^ |
      Rev. 2   Vote: I like it 0 Vote: I do not like it

      I remember the idea behind it, like I have a real strong intuition of why it works, with that and the time I spend to practice a new algorithm it is easy to remember the idea, some algorithms (like maximum matching for example), even though I know the idea, it would take me 20 minutes to implement it because I don't remember the implementation.

»
19 months ago, # |
  Vote: I like it 0 Vote: I do not like it

no :)

  • »
    »
    19 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    So, how you write algorithm when you need them, but don’t remember

    • »
      »
      »
      19 months ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      googleforces

    • »
      »
      »
      19 months ago, # ^ |
        Vote: I like it +15 Vote: I do not like it

      Implementing algorithms in advance and building a generic library that you can use as a drop-in during contests is helpful. But this is helpful only for complex algorithms like flows and FFT and common snippets. You should ideally be writing most simple algorithms like DFS, BFS and Dijkstra on the fly because at times it's faster than using templates, even if you're using a snippet manager, and it is a good thing to know what an algorithm does by repeatedly implementing it on your own in multiple problems before templating it.