PrevNext
Not Frequent
 0/16

Knapsack DP

Authors: Nathan Chen, Michael Cao, Benjamin Qi

Problems that can be modeled as filling a limited-size container with a subset of items.

Focus Problem – read through this problem before continuing!

Tutorial

Resources
CPHSolves "Minimizing Coins," 0/1 Knapsack
YoutubeIf you find videos helpful

Knapsack problems generally involve filling a limited container with a subset of items, and we want to count or optimize some quantity associated with the items. Almost every time, you can think of each item as having a positive weight, and the total weight of the items we choose must not exceed the capacity of the container, which is some number. Some variations of knapsack-type problems include:

  • The 0/1 Knapsack problem: Choosing a subset of items such that we maximize their total value, and their total weight does not exceed the capacity of the container
  • Finding all the possible total weights that we can achieve from any subset of items, and their total weight does not exceed the capacity of the container (in the chapter of CPH linked above)
  • Counting how many sequences of items will fill the container completely, meaning the total weight is exactly the capacity of the container (the order may or may not matter)

The DP solution to knapsack problems usually has the state keeping track of the capacity of the knapsack, and the transitions involve trying to add an item to the knapsack. In competitive programming, you can expect that classical knapsack problems will be given twists, disguises, and extra state information involved.

Solution - Dice Combinations

The problem asks us how many sequences of dice rolls exist such that sum of the top faces is (). To keep up with the knapsack analogy, that means we have infinite numbers of items of weights through , and we want to count how many sequences of items exist such that if we put items into the container while following the sequence, the container becomes completely full. Note that the order of the items matters in this problem.

For convenience, let be the number of sequences of dice rolls that add up to . To count how many sequences add up to , or in other words, to find , let's look at the last dice roll that brings us up to a total sum of .

If the last roll was a , then we know there are ways to achieve sum when the last roll is . If the last roll was a , then we know there are ways to achieve sum when the last roll is . Continue this logic for all the dice numbers up to . Considering all those cases together, we have shown that

Apply that same logic we used for on a general :

Start with the base case that , and then , , , and so on... can be calculated using the recurrence until we find . Note in the code that we ignore if .

C++

1#include <bits/stdc++.h>
2
3using namespace std;
4
5typedef long long ll;
6
7int main() {
8 int n;
9 cin >> n;
10 ll dp[n+1]{}; dp[0] = 1;

Java

1import java.util.*;
2import java.io.*;
3
4public class Main {
5 public static void main(String[] args) throws Exception {
6 BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
7 int n; n = Integer.parseInt(br.readLine());
8
9 long dp[] = new long[n+1];
10 dp[0] = 1;

Python

Problems

CSES

StatusSourceProblem NameDifficultyTagsSolutionURL
CSESVery Easy
Show Tags

Knapsack

CSESEasy
Show Tags

Knapsack

CSESEasy
Show Tags

Knapsack

CSESEasy
Show Tags

Knapsack

External Sol
CSESEasy
Show Tags

Knapsack

External Sol
CSESEasy
Show Tags

Knapsack

External Sol
CSESHard

USACO

StatusSourceProblem NameDifficultyTagsSolutionURL
GoldEasy
Show Tags

DP, Knapsack

External Sol
GoldHard
Show Tags

DP, Knapsack, Binary Search

External Sol
PlatVery HardExternal Sol

NT

Some knapsack problems with number-theoretic twists!

StatusSourceProblem NameDifficultyTagsSolutionURL
CFNormal
Show Tags

Knapsack

Check CF
GoldNormal
Show Tags

Knapsack, Exponentiation

External Sol
GoldNormal
Show Tags

Knapsack, Prime Factorization

External Sol
POINormal
Show Tags

Knapsack, Prime Factorization

PlatInsane
Show Tags

Knapsack, Prime Factorization

External Sol

Module Progress:

Join the USACO Forum!

Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!

Give Us Feedback on Knapsack DP!

PrevNext