Dynamic Programming
Solve complex problems by breaking them down into simpler subproblems.
Overview
Dynamic Programming (DP) is a method for solving complex problems by breaking them down into simpler subproblems. It is applicable to problems exhibiting two key attributes: optimal substructure and overlapping subproblems.
Key Concepts
- Optimal Substructure: The optimal solution to the problem contains optimal solutions to its subproblems.
- Overlapping Subproblems: The same subproblems are encountered multiple times during problem-solving.
Approaches to DP
- Top-Down (Memoization): Solve the problem recursively, but store the results of subproblems to avoid redundant calculations.
- Bottom-Up (Tabulation): Build up solutions to subproblems iteratively, starting from the simplest cases.
Common Patterns
-
1D DP: Problems involving a single state dimension
- Examples: Fibonacci, Climbing Stairs, House Robber
-
2D DP: Problems involving two state dimensions
- Examples: Longest Common Subsequence, Edit Distance, Minimum Path Sum
-
Knapsack Problems: Optimization problems with constraints
- Examples: 0/1 Knapsack, Unbounded Knapsack
-
String DP: Problems involving string manipulations
- Examples: Longest Palindromic Substring, Regular Expression Matching
-
Interval DP: Problems involving intervals
- Examples: Matrix Chain Multiplication, Burst Balloons
Common Problems
- Fibonacci Numbers
- Longest Increasing Subsequence
- Coin Change
- Longest Common Subsequence
- Knapsack Problem
Related Resources
Practice Problems
Climbing Stairs
EasyYou are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
Coin Change
MediumYou are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money. Return the fewest number of coins that you need to make up that amount.
Study Tips
- Start with easier problems and gradually increase difficulty
- Focus on understanding the problem before coding
- Review solutions even after solving to learn optimal approaches