This is a really general question. What is dynamic programming (how's it different from recursion, memoization, etc)? I've read the wikipedia article on it but I still don't really understand it.
Help me 'get' dynamic programming. Thanks.
|
This is a really general question. What is dynamic programming (how's it different from recursion, memoization, etc)? I've read the wikipedia article on it but I still don't really understand it. Help me 'get' dynamic programming. Thanks. |
||||
|
|
|
Dynamic programming is when you use past knowledge to solve a future problem easier. A good example is solving the fibonacci sequence for n=1,000,002. This will be a very long process, but what if I give you the results for n=1,000,000 and n=1,000,0001? Suddenly the problem just becomes more manageable. Dynamic programming is used a lot in string problems, such as the string edit problem. You solve a subset(s) of the problem and then use that information to solve the more difficult original problem. With dynamic programming, you store your results in some sort of table generally. When you need the answer to a problem, you reference the table and see if you already know what it is. If not, you use the data in your table to give yourself a stepping stone towards the answer. The Cormen Algorithms book has a great chapter about dynamic programming. AND it's free on Google Books! Check it out here. |
|||||||||||||||||||||
|
|
Memoization is the when you store previous results of a function call (a real function always returns the same thing, given the same inputs). It doesn't make a difference for algorithmic complexity before the results are stored. Recursion is the method of a function calling itself, usually with a smaller dataset. Since most recursive functions can be converted to similar iterative functions, this doesn't make a difference for algorithmic complexity either. Dynamic programming is the process of solving easier-to-solve sub-problems and building up the answer from that. Most DP algorithms will be in the running times between a Greedy algorithm (if one exists) and an exponential (enumerate all possibilities and find the best one) algorithm.
|
|||
|
|
It's an optimization of your algorithm that cuts running time. While a Greedy Algorithm is usually called naive, because it may run multiple times over the same set of data, Dynamic Programming avoids this pitfall through a deeper understanding of the partial results that must be stored to help build the final solution. A simple example is traversing a tree or a graph only through the nodes that would contribute with the solution, or putting into a table the solutions that you've found so far so you can avoid traversing the same nodes over and over. Here's an example of a problem that's suited for dynamic programming, from UVA's online judge: Edit Steps Ladder. I'm going to make quick briefing of the important part of this problem's analysis, taken from the book Programming Challenges, I suggest you check it out.
Here, a very particular analysis of what it takes to gather the most optimal partial results, is what makes the solution a "dynamic" one. Here's an alternate, full solution to the same problem. It's also a "dynamic" one even though its execution is different. I suggest you check out how efficient the solution is by submitting it to UVA's online judge. I find amazing how such a heavy problem was tackled so efficiently. |
|||||
|
|
Here is my answer in similar topic Start with
If you want to test yourself my choices about online judges are
and of course
You can also checks good universities algorithms courses After all, if you can't solve problems ask SO that many algorithms addict exist here |
|||
|
|
|
The key bits of dynamic programming are "overlapping sub-problems" and "optimal substructure". These properties of a problem mean that an optimal solution is composed of the optimal solutions to its sub-problems. For instance, shortest path problems exhibit optimal substructure. The shortest path from A to C is the shortest path from A to some node B followed by the shortest path from that node B to C. In greater detail, to solve a shortest-path problem you will:
Because we are working bottom-up, we already have solutions to the sub-problems when it comes time to use them, by memoizing them. Remember, dynamic programming problems must have both overlapping sub-problems, and optimal substructure. Generating the Fibonacci sequence is not a dynamic programming problem; it utilizes memoization because it has overlapping sub-problems, but it does not have optimal substructure (because there is no optimization problem involved). |
|||
|
|
|
Here is one tutorial by Michael A. Trick from CMU that I found particularly helpful: http://mat.gsia.cmu.edu/classes/dynamic/dynamic.html It is certainly in addition to all resources others have recommended (all other resources, specially CLR and Kleinberg,Tardos are very good!). The reason why I like this tutorial is because it introduces advanced concepts fairly gradually. It is bit oldish material but it is a good addition to the list of resources presented here. Also check out Steven Skiena's page and lectures on Dynamic Programming: http://www.cs.sunysb.edu/~algorith/video-lectures/ http://www.cs.sunysb.edu/~algorith/video-lectures/1997/lecture12.pdf |
|||
|
|