惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
J
Java Code Geeks
有赞技术团队
有赞技术团队
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
G
Google Developers Blog
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
腾讯CDC
V
Visual Studio Blog
博客园 - 【当耐特】
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why Dynamic Programming Feels Impossible (And the 5 Patte...
Alex Mateo · 2026-06-06 · via DEV Community

Most people who struggle with DP aren't struggling with the concept. They're struggling with a specific problem: every DP problem looks different on the surface, and nobody teaches you how to recognize which type you're dealing with before you start coding.

This post fixes that. There are 5 structural patterns that cover the vast majority of DP problems in coding interviews. Once you can place a problem in one of these 5 categories, the recurrence almost writes itself.


Why DP feels different from other patterns

Sliding window and two pointers have visible triggers. "Contiguous subarray" means sliding window. "Sorted array, find a pair" means two pointers. The signal is in the problem statement.

DP problems don't work that way. The signal isn't a word in the problem, it's a structural property: overlapping subproblems and optimal substructure. You have to recognize that the problem decomposes into smaller versions of itself, and that solving those smaller versions once (and reusing the answers) leads to an efficient solution.

That's why DP problems feel hard to categorize. But they do fall into patterns, and recognizing those patterns is a learnable skill.


The 5 DP patterns

1. Linear DP (1D state)

The simplest form. Your state is a single index into a 1D array, and each state depends on a fixed number of previous states.

Trigger: the problem asks for the optimal value at position i, and that value depends on positions before i.

Examples: Climbing Stairs, House Robber, Maximum Subarray (Kadane's), Coin Change.

The recurrence for House Robber: dp[i] = max(dp[i-1], dp[i-2] + nums[i]). At each house you either skip it (take dp[i-1]) or rob it (take dp[i-2] plus the current value). Two choices, pick the better one.

2. Grid DP (2D state)

Your state is a cell (i, j) in a 2D grid, and you can typically only move right or down. Each cell's value depends on the cells above it and to its left.

Trigger: the problem involves a grid, a matrix, or two sequences being compared.

Examples: Unique Paths, Minimum Path Sum, Longest Common Subsequence, Edit Distance.

The recurrence for Unique Paths: dp[i][j] = dp[i-1][j] + dp[i][j-1]. The number of ways to reach (i,j) is the sum of ways to reach the cell above and the cell to the left.

3. Knapsack DP

You have a set of items, each with a weight and a value, and a capacity. You're deciding which items to include to maximize value without exceeding capacity.

Trigger: "you can use each item once" or "unlimited copies of each item." The subset selection under a budget constraint.

Examples: 0/1 Knapsack, Unbounded Knapsack, Partition Equal Subset Sum, Target Sum.

The two variants matter: 0/1 knapsack (each item used at most once) iterates the capacity in reverse. Unbounded knapsack (unlimited copies) iterates forward. Mixing these up is one of the most common DP bugs.

4. Interval DP

Your state is a subarray or interval (i, j), and the answer for the full interval is built from answers to smaller intervals inside it.

Trigger: the problem asks you to process a sequence and make decisions about ranges within it, where the optimal split point varies.

Examples: Burst Balloons, Matrix Chain Multiplication, Palindrome Partitioning II, Strange Printer.

These are the hardest DP problems in interviews. The key is identifying that you need to try every possible split point k in the range (i, j) and take the best result.

5. State machine DP

Your state includes not just a position but a mode or status the algorithm is in. Transitions change both the position and the mode.

Trigger: the problem involves states like "holding" or "not holding," "in cooldown" or "ready," "ascending" or "descending."

Examples: Best Time to Buy and Sell Stock (with cooldown, transaction limits), Wiggle Subsequence.

The most common example: stock trading with a cooldown. States are: held (holding a stock), sold (just sold, in cooldown), rest (not holding, not in cooldown). Each day you transition between states based on the action you take.


What recognizing the pattern actually changes

Before knowing these patterns, a DP problem looks like: "I need to find some optimal value, I don't know how to start."

After knowing them, it looks like: "This is a 1D linear DP, the state is the index, the transitions are the two choices at each position, the base case is index 0."

That's not a small difference. The pattern gives you the shape of the solution before you've written a line of code. The recurrence is just filling in the details.

The remaining hard part is the base case and the table fill order, which is where most bugs actually live. Getting those right comes from tracing the dp table manually on a small example, watching each cell compute from the ones it depends on.

If you want to go deeper on all 5 patterns with worked examples and a visual walkthrough of how each dp table fills, this guide covers them in detail: Dynamic Programming Explained Visually: Memoization, Tabulation, and the Patterns That Stick


FAQ

Is dynamic programming just recursion with memoization?

Memoization (top-down) and tabulation (bottom-up) are two implementations of the same idea: solve each subproblem once and reuse the result. Memoization uses recursion with a cache. Tabulation fills a table iteratively. Both give the same time complexity. Tabulation is usually faster in practice due to no recursion overhead.

What is the hardest part of dynamic programming?

For most people it's not the recurrence, it's identifying that a problem requires DP at all. The trigger is overlapping subproblems: if a naive recursive solution recomputes the same inputs multiple times, DP is likely the right approach. Draw the recursion tree for a small input and check if nodes repeat.

How do I know if a problem needs DP or greedy?

Greedy works when a locally optimal choice always leads to a globally optimal solution. DP is required when making the locally optimal choice now can lead to a worse outcome later. If you can prove that the greedy choice is safe (often via an exchange argument), use greedy. Otherwise, default to DP.


Originally published at tryexpora.com/blog/dynamic-programming-explained