Skip to main content

Knapsack Problem

Here we show how to solve the knapsack problem using JijZept and JijModeling. This problem is also mentioned in 5.2. Knapsack with Integer Weights on Lucas, 2014, "Ising formulations of many NP problems"

What is the knapsack problem?

The knapsack problem is the problem of finding the optimal solution in the following situation. Also, it is known as one of the most famous NP-hard integer programming problems.

Example

As a concrete example of this problem, we consider the following story:

An explorer was exploring a cave. After walking in the cave for a while, he unexpectedly found some treasures.

Treasure ATreasure BTreasure CTreasure DTreasure ETreasure F
Price$5000$7000$2000$1000$4000$3000
weight800g1000g600g400g500g300g

Unfortunately, the explorer only had a small knapsack to carry these treasures. This knapsack can only hold 2 kg. The explorer wants the value of the treasures in this knapsack to be as valuable as possible. Which treasures should the explorer choose to bring back most efficiently?

The knapsack problem

We consider generalization above problem. Let {0,1,,i,,N1}\{ 0, 1, \dots, i, \dots, N-1 \} be the set of items to put in the knapsack. Lists of the cost v\bm{v} and weight w\bm{w} of each item ii allow us to represent the problem.

v={v0,v1,,vi,,vN1}\bm{v} = \{v_0, v_1, \dots, v_i, \dots, v_{N-1}\}
w={w0,w1,,wi,,wN1}\bm{w} = \{w_0, w_1, \dots, w_i, \dots, w_{N-1}\}

Furthermore, we define a binary variable xix_i that represents the selection of the iith item. This binary is 1 if we choose iith item to put into the knapsack, and 0 otherwise. Finally, we denote WW to be the capacity of the knapsack.
We want to maximize the total cost of item put into the knapsack. Therefore, let us express this requirement as an objective function. In addition, we should take into account the constraint for knapsack capacity limitation. Finally, the mathematical model of this problem is as follows.

maxi=0N1vixi(1)\max \quad \sum_{i=0}^{N-1} v_i x_i \tag{1}
s.t.i=0N1wixiW(2)\mathrm{s.t.} \quad \sum_{i=0}^{N-1} w_i x_i \leq W \tag{2}
xi{0,1}(i{0,1,,N1})(3)x_i \in \{0, 1\} \quad (\forall i \in \{0, 1, \dots, N-1\}) \tag{3}

Modeling by JijModeling

Next, we show an implementation of the above mathematical model in JijModeling. We first define variables for the mathematical model.

import jijmodeling as jm

# define variables
v = jm.Placeholder('v', ndim=1)
N = v.len_at(0, latex="N")
w = jm.Placeholder('w', ndim=1)
W = jm.Placeholder('W')
x = jm.BinaryVar('x', shape=(N,))
i = jm.Element('i', belong_to=(0, N))

v=jm.Placeholder('v', ndim=1) represents a one-dimensional list of values of items. The number of items N is obtained from the length of v. Using N, we can define a one-dimensional list of weights of items as w=jm.Placeholder('w', ndim=1). Such a definition ensures that v and w have the same length. W = jm.Placeholder('W') is a scalar WW representing the knapsack capacity. We define a list of binary variables x of the same length as v, w by writing x=jm.BinaryVar('x', shape=(N,)). Finally, i=jm.Element('i', belong_to=(0, N)) represents the index of vi,wi,xiv_i, w_i, x_i. This denotes i is an integer in the range 0i<N0 \leq i < N. .set_latex allow us to set the character when it is displayed in Jupyter Notebook.

Objective function

We implement an objective function Equation (1).

# set problem
problem = jm.Problem('Knapsack', sense=jm.ProblemSense.MAXIMIZE)
# set objective function
problem += jm.sum(i, v[i]*x[i])

We create a problem problem=jm.Problem('Knapsack') and add an objective function. sum(i, formula) represents the sum from i=0i=0 to i=N1i=N-1 of formula.

Constraint

Next, we implement a constraint Equation (2).

# set total weight constarint
const = jm.sum(i, w[i]*x[i])
problem += jm.Constraint('weight', const<=W)

Constraint('name', formula) allows us to set the constraint and name it.

Let's display the implemented mathematical model in Jupyter Notebook.

problem

Problem:Knapsackmaxi=0N1vixis.t.weighti=0N1wixiWwherex1-dim binary variable\begin{array}{cccc}\text{Problem:} & \text{Knapsack} & & \\& & \max \quad \displaystyle \sum_{i = 0}^{N - 1} v_{i} \cdot x_{i} & \\\text{{s.t.}} & & & \\ & \text{weight} & \displaystyle \sum_{i = 0}^{N - 1} w_{i} \cdot x_{i} \leq W & \\\text{{where}} & & & \\& x & 1\text{-dim binary variable}\\\end{array}

Prepare an instance

import numpy as np
# set a list of values & weights
inst_v = np.random.randint(5,30,100)
inst_w = inst_v + np.random.randint(-2,20,100)
# set maximum weight
inst_W = 100
instance_data = {'v': inst_v, 'w': inst_w, 'W': inst_W}

Solve by JijZept's SA

We solve this problem using JijZept JijSASampler. We also use the parameter search function by setting search=True.

import jijzept as jz

# set sampler
sampler = jz.JijSASampler(config='config.toml')
# solve problem
response = sampler.sample_model(problem, instance_data, multipliers={"weight": 1.0}, num_reads=100, search=True)

Visualize the solution

In the end, we extract the highest energy solution among the feasible solutions and visualize it.

# get feasible samples
sampleset = response.get_sampleset()
feasible_samples = sampleset.feasibles()
# get the values of feasible objective function
feasible_objectives = [-sample.eval.objective for sample in feasible_samples]
# get the index of the highest objective value
highest_index = np.argmax(feasible_objectives)
# get a dictionary {index of x=1: 1}
highest_solution = feasible_samples[highest_index].var_values["x"].values
# initialize
sum_w = 0
chosen_items_list = []
# compute sum of weights and store the indices
for j in highest_solution.keys():
sum_w += inst_w[j[0]]
chosen_items_list.append(j[0])
# show results
print("Values of chosen items: ", inst_v[chosen_items_list])
print("Weights of chosen items: ", inst_w[chosen_items_list])
print("Total value from objective: ", feasible_objectives[highest_index])
print("Total weight: ", sum_w)
Values of chosen items:  [11 23 18 15 22 19]
Weights of chosen items: [10 22 16 13 21 18]
Total value from objective: 108.0
Total weight: 100

The kanpsack is well packed as much as possible and the items which are light and valuable are chosen to put in the knapsack.