...

/

Algorithm Design: Dynamic Programming Algorithms

Algorithm Design: Dynamic Programming Algorithms

Understand the dynamic programming algorithms with the help of different examples.

Dynamic programming algorithms

Some algorithms break a problem into smaller subproblems and use the subproblems’ solutions to construct the larger one’s solution. During this process, the number of subproblems might become very large. Some algorithms solve the same subproblem repeatedly, needlessly increasing the algorithm’s runtime. Dynamic programming organizes computations to avoid re-computing already known values, which can often save a great deal of time.

Press + to interact
Dynamic programming algorithm
Dynamic programming algorithm

Rocks game example

The Ringing Telephone Problem does not lend itself to a dynamic programming solution, so we consider a different problem to illustrate the technique. Suppose that instead of answering the phone, you decide to play the “Rocks” game with two piles of rocks, say ten in each. In each turn, one player may take either one rock (from either pile) or two rocks (one from each pile). Once the rocks are taken, they are removed from play. The player that takes the last rock wins the game. You make the first move. We encourage our learners to play this game using the interactive puzzle below:

Two rocks game

To find the winning strategy for the 10+1010 + 10 game, we can construct a table, which we can call RR, shown in Figure A. Instead of solving a problem with 1010 rocks in each pile, we will solve a more general problem with nn rocks in one pile and mm rocks in the other pile (the n+mn + m game) where nn and mm are arbitrary non-negative integers.

If Player 1 can always win the n+mn + m game, then we would say R(n,m)=WR(n,m) = W. But if Player 1 has no winning strategy against a player that always makes the right moves, we would write R(n,m)=LR(n,m) = L. Computing R(n,m)R(n,m) for arbitrary nn and mm seems difficult, but we can build on smaller values. Some games, notably R(0,1)R(0,1), R(1,0)R(1,0), and R(1,1)R(1,1), are clearly winning propositions for Player 1 since in the first move, Player 1 can win. Therefore, we fill in entries (1,1)(1,1), (0,1)(0,1), and (1,0)(1,0) as WW. See Figure (a).

Figure (a)

After the entries (0,1)(0,1) ...

Figure (b)