Knapsack DP
Authors: Nathan Chen, Michael Cao, Benjamin Qi
Contributor: Neo Wang
Problems that can be modeled as filling a limited-size container with items.
Prerequisites
Focus Problem – try your best to solve this problem before continuing!
Tutorial
Resources | ||||
---|---|---|---|---|
CPH | Solves "Minimizing Coins," 0/1 Knapsack | |||
YouTube | Videos for common knapsack variations |
Knapsack problems generally involve filling a limited container with a subset of items where 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 such that 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
Time Complexity:
The problem asks us how many sequences of dice rolls exist such that the 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++
#include <bits/stdc++.h>using namespace std;long long dp[1000001];int main() {int n;cin >> n;dp[0] = 1;
Java
import java.io.*;import java.util.*;public class Main {public static void main(String[] args) throws Exception {BufferedReader br = new BufferedReader(new InputStreamReader(System.in));int n;n = Integer.parseInt(br.readLine());long dp[] = new long[n + 1];
Python
dp = [1]for i in range(int(input())):dp.append(sum(dp[-6:]) % (10**9 + 7))print(dp[-1])
Problems
General
Status | Source | Problem Name | Difficulty | Tags | |
---|---|---|---|---|---|
CSES | Very Easy | Show TagsKnapsack | |||
CSES | Easy | Show TagsKnapsack | |||
CSES | Easy | Show TagsKnapsack | |||
AC | Easy | Show TagsKnapsack | |||
CSES | Easy | Show TagsKnapsack | |||
CSES | Easy | Show TagsKnapsack | |||
CSES | Easy | Show TagsKnapsack | |||
CF | Easy | Show TagsKnapsack | |||
NOI | Normal | Show TagsDP, Knapsack | |||
CSES | Hard | Show TagsKnapsack |
USACO
Status | Source | Problem Name | Difficulty | Tags | |
---|---|---|---|---|---|
Gold | Easy | Show TagsDP, Knapsack | |||
Gold | Hard | Show TagsBinary Search, DP, Knapsack | |||
Platinum | Very Hard | Show TagsKnapsack |
NT
Some knapsack problems with number-theoretic twists!
Status | Source | Problem Name | Difficulty | Tags | |
---|---|---|---|---|---|
CF | Normal | Show TagsKnapsack | |||
Gold | Normal | Show TagsExponentiation, Knapsack | |||
Gold | Normal | Show TagsKnapsack, Prime Factorization | |||
POI | Normal | Show TagsKnapsack, Prime Factorization | |||
TC | Hard | Show TagsDP | |||
CEOI | Hard | Show TagsKnapsack, Sorting | |||
Platinum | Insane | Show TagsKnapsack, Prime Factorization |
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!