Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • DSA
  • Interview Problems on DP
  • Practice DP
  • MCQs on DP
  • Tutorial on Dynamic Programming
  • Optimal Substructure
  • Overlapping Subproblem
  • Memoization
  • Tabulation
  • Tabulation vs Memoization
  • 0/1 Knapsack
  • Unbounded Knapsack
  • Subset Sum
  • LCS
  • LIS
  • Coin Change
  • Word Break
  • Egg Dropping Puzzle
  • Matrix Chain Multiplication
  • Palindrome Partitioning
  • DP on Arrays
  • DP with Bitmasking
  • Digit DP
  • DP on Trees
  • DP on Graph
Open In App
Next Article:
Divide and Conquer Algorithm
Next article icon

Dynamic Programming or DP

Last Updated : 18 Mar, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Dynamic Programming is an algorithmic technique with the following properties.

  • It is mainly an optimization over plain recursion. Wherever we see a recursive solution that has repeated calls for the same inputs, we can optimize it using Dynamic Programming.
  • The idea is to simply store the results of subproblems so that we do not have to re-compute them when needed later. This simple optimization typically reduces time complexities from exponential to polynomial.
  • Some popular problems solved using Dynamic Programming are Fibonacci Numbers, Diff Utility (Longest Common Subsequence), Bellman–Ford Shortest Path, Floyd Warshall, Edit Distance and Matrix Chain Multiplication.


Basic of DP

  • Introduction to DP
  • Tabulation vs Memoization
  • Steps to solve a DP Problem

Basic Problems

  • Fibonacci numbers
  • Tribonacci Numbers
  • Lucas Numbers
  • Climbing Stairs
  • Climbing Stairs with 3 Moves
  • Weighted Climbing Stairs
  • Maximum Segments
  • nth Catalan Number
  • Count Unique BSTs
  • Count Valid Parenthesis
  • Ways to Triangulate a Polygon
  • Min Sum in a Triangle
  • Minimum Perfect Squares
  • Ways to Partition a Set
  • Binomial Coefficient
  • Pascal's Triangle
  • Nth Row of Pascal Triangle
  • Min Sum in a Triangle

Easy Problems

  • House Robber
  • Min Cost Path
  • Decode Ways
  • Subset Sum Problem
  • Coin change problem - Count Ways
  • Coin Change – Minimum Coins to Make Sum
  • Painting Fence Algorithm
  • Cutting a Rod
  • Jump Game
  • Longest Common Substring
  • Count all paths in a Grid
  • Paths in a Grid with Obstacles
  • Permutations with K Inversions
  • Max A's using Special Keyboard

Medium Problems

  • Water Overflow
  • Longest Common Subsequence
  • Longest Increasing Subsequence
  • Edit Distance
  • Largest Divisible Subset
  • Weighted Job Schedulling
  • 0-1 Knapsack Problem
  • Printing Items in 0/1 Knapsack
  • Unbounded Knapsack
  • Word Break Problem
  • Tile Stacking Problem
  • Box-Stacking Problem
  • Partition Problem
  • Longest Palindromic Subsequence
  • Longest Common Increasing Subsequence (LCS + LIS)
  • All distinct subset (or subsequence) sums
  • Count Derangements
  • Minimum insertions for palindrome
  • Wildcard Pattern Matching
  • Regular Expression Matching
  • Arrange Balls with adjacent of different types
  • Longest Subsequence with 1 adjacent difference
  • Maximum size square sub-matrix with all 1s
  • Bellman–Ford Algorithm
  • Floyd Warshall Algorithm
  • Maximum Tip Calculator

Hard Problems

  • Largest X Bordered Square
  • Egg Dropping Problem
  • Palindrome Partitioning
  • Palindromic Substring Count
  • Word Wrap Problem
  • Optimal Strategy for a Game
  • The painter’s partition problem
  • Program for Bridge and Torch problem
  • Matrix Chain Multiplication
  • Printing Matrix Chain Multiplication
  • Maximum sum rectangle
  • Stock Buy and Sell - At-Most k Times
  • Stock Buy and Sell - At Most 2 Times
  • Min cost to sort strings using Reversals
  • Count of AP Subsequences
  • DP on Trees
  • Max Height of Tree when any Node can be Root
  • Longest repeating and non-overlapping substring
  • Palindrome Substrings Count

DP Problems Sorted by Topic / Dimensions / Standard Problems

  • DP Standard Problems and Variations.
  • DP Problems Dimension Wise (1D, 2D and 3D)
  • DP Problems Topic Wise

Advanced Concepts in Dynamic Programming (DP)

  • Bitmasking and Dynamic Programming | Set 1
  • Bitmasking and Dynamic Programming | Set-2 (TSP)
  • Digit DP | Introduction
  • Sum over Subsets | Dynamic Programming

Quick Links:

  • Learn Data Structure and Algorithms | DSA Tutorial
  • Top 20 Dynamic Programming Interview Questions
  • ‘Practice Problems’ on Dynamic Programming
  • ‘Quiz’ on Dynamic Programming

Next Article
Divide and Conquer Algorithm

H

harendrakumar123
Improve
Article Tags :
  • Algorithms
  • Dynamic Programming
  • DSA
Practice Tags :
  • Algorithms
  • Dynamic Programming

Similar Reads

  • DSA Tutorial - Learn Data Structures and Algorithms
    DSA (Data Structures and Algorithms) is the study of organizing data efficiently using data structures like arrays, stacks, and trees, paired with step-by-step procedures (or algorithms) to solve problems effectively. Data structures manage how data is stored and accessed, while algorithms focus on
    7 min read
  • Array Data Structure Guide
    In this article, we introduce array, implementation in different popular languages, its basic operations and commonly seen problems / interview questions. An array stores items (in case of C/C++ and Java Primitive Arrays) or their references (in case of Python, JS, Java Non-Primitive) at contiguous
    4 min read
  • String in Data Structure
    A string is a sequence of characters. The following facts make string an interesting data structure. Small set of elements. Unlike normal array, strings typically have smaller set of items. For example, lowercase English alphabet has only 26 characters. ASCII has only 256 characters.Strings are immu
    3 min read
  • Matrix Data Structure
    Matrix Data Structure is a two-dimensional array arranged in rows and columns. It is commonly used to represent mathematical matrices and is fundamental in various fields like mathematics, computer graphics, and data processing. Matrices allow for efficient storage and manipulation of data in a stru
    2 min read
  • Searching Algorithms
    Searching algorithms are essential tools in computer science used to locate specific items within a collection of data. In this tutorial, we are mainly going to focus upon searching in an array. When we search an item in an array, there are two most common algorithms used based on the type of input
    3 min read
  • Sorting Algorithms
    A Sorting Algorithm is used to rearrange a given array or list of elements in an order. For example, a given array [10, 20, 5, 2] becomes [2, 5, 10, 20] after sorting in increasing order and becomes [20, 10, 5, 2] after sorting in decreasing order. There exist different sorting algorithms for differ
    3 min read
  • Hashing in Data Structure
    Hashing is a technique used in data structures that efficiently stores and retrieves data in a way that allows for quick access. Hashing involves mapping data to a specific index in a hash table (an array of items) using a hash function. It enables fast retrieval of information based on its key. The
    3 min read
  • Two Pointers Technique
    Two pointers is really an easy and effective technique that is typically used for Two Sum in Sorted Arrays, Closest Two Sum, Three Sum, Four Sum, Trapping Rain Water and many other popular interview questions. Given a sorted array arr (sorted in ascending order) and a target, find if there exists an
    12 min read
  • Sliding Window Technique
    Sliding Window problems involve moving a fixed or variable-size window through a data structure, typically an array or string, to solve problems efficiently based on continuous subsets of elements. This technique is used when we need to find subarrays or substrings according to a given set of condit
    15+ min read
  • Prefix Sum Array - Implementation and Applications
    Given an array arr[] of size n, the task is to find the prefix sum of the array. A prefix sum array is another array prefixSum[] of the same size, such that prefixSum[i] is arr[0] + arr[1] + arr[2] . . . arr[i]. Examples: Input: arr[] = [10, 20, 10, 5, 15]Output: 10 30 40 45 60Explanation: For each
    8 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences