Remember the path you've walked on, don't hesitate going back, and you can consider the overall situation.
Dynamic programming actually does these things:
On contrary to Divide-and-Conquer, dynamic programming uses a table to store answers of sub-problems instead of recurrence again and again. In this way, dynamic programming is suitable for problems which have:
Some classical problems solved with DP will be introduced in this chapter.
If $\boldsymbol{A}$ is a $p\times q$ matrix and $\boldsymbol{B}$ is a $q\times r$ matrix, then the complexity of $\boldsymbol{A}\times\boldsymbol{B}$ is $pqr$.
Assume that $\boldsymbol{A}_1$ is $10\times100$, $\boldsymbol{A}_2$ is $100\times5$ and $\boldsymbol{A}_3$ is $5\times50$, then
Given $n$ matrices $\boldsymbol{A}_1, \boldsymbol{A}_2, \cdots, \boldsymbol{A}_n$, find the quickest way to calculate their multiplication.
This problem can be divided into several sub-problem which follows the 'optimal sub-structure' rule. If the optimal answer of $\boldsymbol{A}{1\to n}$ breaks down on $\boldsymbol{A}k$, which means $\boldsymbol{A}{1\to n}=\boldsymbol{A}{1\to k}\times\boldsymbol{A}{(k+1)\to n}$, then the answers two sub-problem $\boldsymbol{A}{1\to k}$ and $\boldsymbol{A}{(k+1)\to n}$ has to be optimal answers too, otherwise the $\boldsymbol{A}{1\to n}$ won't be the best answer of a better sub-problem answer exists.