Binary Knapsack Problem using Greedy Algorithm

Binary knapsack problem is defined as, “Given a set of items having some weight and value/profit associated with it. The knapsack problem is to find the set of items such that the total weight is less than or equal to a given limit (size of knapsack) and the total value/profit earned is as large as possible.”

Binary Knapsack

Image Source: https://en.wikipedia.org/wiki/Knapsack_problem [link]

Knapsack problem has two variants.

  • Binary or 0/1 knapsack : Item cannot be broken down into parts.
  • Fractional knapsack : Item can be divided into parts.

Given a set of items, each having some weight and value/profit associated with it. The goal is to find the set of items such that the total weight is less than or equal to a given limit (size of knapsack) and the total value/profit earned is as large as possible.

  • The knapsack is an optimization problem and it is useful in solving resource allocation problem.
  • Let X = <x1, x2, x3, . . . . . , xn> is the set of n items. W = <w1, w2, w3, . . . , wn> and V = <v1, v2, v3, . . . , vn> are the set of weight and value associated with each items in x, respectively. Knapsack capacity is M.
  • Select items one by one from the set of items x and fill the knapsack such that it would maximize the value. Knapsack problem has two variants. 0/1 knapsack does not allow breaking of items. Either add entire item in a knapsack or reject it. It is also known as a binary knapsack. Fractional knapsack allows the breaking of items. So profit will also be considered accordingly.
  • Knapsack problem can be formulated as follow :

Maximize \[ sum_{i=1}^{n} v_i x_i \] subjected to  \[ sum_{i=1}^{n} w_i x_i le M \]

\[ x_i in (0, 1) \] for binary knapsack

\[ x_i in [0, 1] \] for fractional knapsack

Algorithm

Algorithm to solve binary knapsack using greedy approach is described below:

Algorithm BINARY_KNAPSACK(W, V, M)
// W is an array of items
// V is an array of value or profit of items
// M is the capacity of the knapsack
// Items are pre sorted in decreasing order of pi = vi / wi ratio

S ← Φ    // Variable to keep track of weight of selected items 
i ← 1
P ← 0    // Variable to store earned profit

while S < M  do
    if (S + w[i])  ≤  M then
        S ← Sunion ∪ w[i]
        P ← P + v[i]
    else
        i ← i + 1
    end
end

Examples for Binary Knapsack

Problem: Consider the following instance for the simple knapsack problem. Find the solution using the greedy method.            

N = 8

P = {11, 21, 31, 33, 43, 53, 55, 65}

W = {1, 11, 21, 23, 33, 43, 45, 55}

M = 110

Solution:

Let us arrange items by decreasing order of profit density. Assume that items are labeled as (I1, I2, I3, I4, I5, I6, I7, I8), have profit P = {11, 21, 31, 33, 43, 53, 55, 65} and weight W = {1, 11, 21, 23, 33, 43, 45, 55}.

ItemWeightValuepi = vi / wi
I111111.0
I211211.91
I321311.48
I423331.44
I533431.30
I643531.23
I745551.22
I855651.18

We shall select one by one item from the above table. We check the feasibility of item, if the inclusion of an item does not cross the knapsack capacity, then add it. Otherwise, skip the current item and process the next. We should stop when knapsack is full or all items are scanned

Initialize, Weight = 0, P = 0, knapsack capacity M = 110, Solution set S = { }.

Iteration 1 :

Weight = (Weight + w1) = 0 + 1 = 1

Weight ≤ M, so select I1

S = { I1 }, Weight = 1, P = 0 + 11 = 11

Iteration 2 :

Weight = (Weight + w2) = 1 + 11 = 12

Weight ≤ M, so select I2

S = { I1, I2 }, Weight = 12, P = 11 + 21 = 32

Iteration 3 :

Weight = (Weight + w3) = 12 + 21= 33

Weight  ≤ M, so select I3

S = { I1, I2, I3 }, Weight = 33, P = 32 + 31 = 63

Iteration 4 :

Weight = (Weight + w4) = 33 + 23 = 56

Weight ≤ M, so select I4

S = { I1, I2, I3, I4 }, Weight = 56, P = 63 + 33 = 96

Iteration 5 :

Weight = (Weight + w5) = 56 + 33 = 89

Weight ≤ M, so select I5

S = { I1, I2, I3, I4, I5 }, Weight = 89, P = 96 + 43 = 139

Iteration 6 :

Weight = (Weight + w6) = 89 + 43 = 132

Weight > M, so reject I6

S = { I1, I2, I3, I4, I5 }, Weight = 89, P =  139

Iteration 7 :

Weight = (Weight + w7) = 89 + 45= 134

Weight > W, so reject I7

S = { I1, I2, I3, I4, I5 }, Weight = 89, P = 139

Iteration 8 : Weight = (Weight + w8) = 89 + 55= 144

Weight > M, so reject I8

S = { I1, I2, I3, I4, I5 }, Weight = 89, P = 139

All items are tested. The greedy algorithm selects items { I1, I2, I3, I4, I5 }, and gives a profit of 139 units

Problem: Given the six items in the table below and a knapsack with weight limit 100, what is the solution to this knapsack problem?

Item IDWeightValueValue/Weight
A100400.4
B50350.7
C40200.5
D2040.2
E10101
F1060.6

Solution:

Sort the items in decreasing order of value/weight ratio.

Item IDWeightValueValue/Weight
E10101.0
B50350.7
F1060.6
C40200.5
A100400.4
D2040.2

We shall select one by one item from the above table. We check the feasibility of item, if the inclusion of an item does not cross the knapsack capacity, we add it. Otherwise, we skip the current item and process the next. We should stop when knapsack is full or all items are scanned.

Initialize, Weight = 0, P = 0, knapsack capacity M = 100, Solution set S = { }.

Iteration 1 :

Weight = (Weight + WE) = 0 + 10 = 10

Weight ≤ M, so select E

S = { E }, Weight = 10, P = 0 + 10 = 10

Iteration 2 :

Weight = (Weight + WB) = 10 + 50 = 60

Weight ≤ M, so select B

S = { E, B }, Weight = 60, P = 10 + 35 = 45

Iteration 3 :

Weight = (Weight + WF) = 60 + 10 = 70

Weight  ≤ M, so select F

S = { E, B, F }, Weight = 70, P = 45 + 6 = 51

Iteration 4 :

Weight = (Weight + WC) = 70 + 40 = 110

Weight > M, so reject item C

Iteration 5 :

Weight = (Weight + WA) = 70 + 100 = 170

Weight > M, so reject item A

Iteration 6 :

Weight = (Weight + WD) = 70 + 20 = 90

Weight  ≤ M, so select D

S = { E, B, F, D }, Weight = 90, P = 51 + 4 = 55

All items are scanned. The greedy algorithm selects items { E, B, F, D }, and gives a profit of 55 units.

Greedy algorithms are used to find an optimal or near-optimal solution to many real-life problems. A few of them are listed below :

Leave a Reply

Your email address will not be published. Required fields are marked *