Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • DSA
  • Interview Questions on Array
  • Practice Array
  • MCQs on Array
  • Tutorial on Array
  • Types of Arrays
  • Array Operations
  • Subarrays, Subsequences, Subsets
  • Reverse Array
  • Static Vs Arrays
  • Array Vs Linked List
  • Array | Range Queries
  • Advantages & Disadvantages
Open In App
Next Article:
0/1 Knapsack using Least Cost Branch and Bound
Next article icon

0/1 Knapsack using Branch and Bound

Last Updated : 09 Jul, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

Given two arrays v[] and w[] that represent values and weights associated with n items respectively. Find out the maximum value subset(Maximum Profit) of v[] such that the sum of the weights of this subset is smaller than or equal to Knapsack capacity W.

Note: The constraint here is we can either put an item completely into the bag or cannot put it at all [It is not possible to put a part of an item into the bag.

Input: N = 3, W = 4, v[] = {1, 2, 3}, w[] = {4, 5, 1}
Output: 3
Explanation: There are two items which have weight less than or equal to 4. If we select the item with weight 4, the possible profit is 1. And if we select the item with weight 1, the possible profit is 3. So the maximum possible profit is 3. Note that we cannot put both the items with weight 4 and 1 together as the capacity of the bag is 4.

Input: N = 5, W = 10, v[] = {40, 50, 100, 95, 30}, w[] = {2, 3.14, 1.98, 5, 3}
Output: 235

Branch and Bound Algorithm:

Branch and bound is an algorithm design paradigm which is generally used for solving combinatorial optimization problems. These problems typically exponential in terms of time complexity and may require exploring all possible permutations in worst case. Branch and Bound solve these problems relatively quickly. 

Firstly let us explore all approaches for this problem.

1. 0/1 Knapsack using Greedy Approach:

A Greedy approach is to pick the items in decreasing order of value per unit weight. The Greedy approach works only for fractional knapsack problem and may not produce correct result for 0/1 knapsack.

2. 0/1 Knapsack using Dynamic Programming (DP):

We can use Dynamic Programming (DP) for 0/1 Knapsack problem. In DP, we use a 2D table of size n x W. The DP Solution doesn’t work if item weights are not integers.

3. 0/1 Knapsack using Brute Force:

Since DP solution doesn’t always work just like in case of non-integer weight, a solution is to use Brute Force. With n items, there are 2n solutions to be generated, check each to see if they satisfy the constraint, save maximum solution that satisfies constraint. This solution can be expressed as tree.

Knapsack-using-Branch-and-Bound

0/1 Knapsack using Brute Force

4. 0/1 Knapsack using Backtracking:

We can use Backtracking to optimize the Brute Force solution. In the tree representation, we can do DFS of tree. If we reach a point where a solution no longer is feasible, there is no need to continue exploring. In the given example, backtracking would be much more effective if we had even more items or a smaller knapsack capacity.

0-1-Knapsack-using-Branch-and-Bound

0/1 Knapsack using Backtracking

5. 0/1 Knapsack using Branch and Bound:

The backtracking based solution works better than brute force by ignoring infeasible solutions. We can do better (than backtracking) if we know a bound on best possible solution subtree rooted with every node. If the best in subtree is worse than current best, we can simply ignore this node and its subtrees. So we compute bound (best solution) for every node and compare the bound with current best solution before exploring the node.

0-1-Knapsack-using-Branch-and-Bound3

0/1 Knapsack using Branch and Bound

How to find bound for every node for 0/1 Knapsack?

The idea is to use the fact that the Greedy approach provides the best solution for Fractional Knapsack problem. To check if a particular node can give us a better solution or not, we compute the optimal solution (through the node) using Greedy approach. If the solution computed by Greedy approach itself is more than the best so far, then we can’t get a better solution through the node.

Follow the steps to implement the above idea:

  • Sort all items in decreasing order of ratio of value per unit weight so that an upper bound can be computed using Greedy Approach.
  • Initialize maximum profit, maxProfit = 0, create an empty queue, Q, and create a dummy node of decision tree and enqueue it to Q. Profit and weight of dummy node are 0.
  • Do following while Q is not empty.
    • Extract an item from Q. Let the extracted item be u.
    • Compute profit of next level node. If the profit is more than maxProfit, then update maxProfit.
    • Compute bound of next level node. If bound is more than maxProfit, then add next level node to Q.
    • Consider the case when next level node is not considered as part of solution and add a node to queue with level as next, but weight and profit without considering next level nodes. 

Below is the implementation of above approach:

C++
// C++ program to solve knapsack problem using // branch and bound #include <bits/stdc++.h> using namespace std;  // Structure for Item which store weight and corresponding // value of Item struct Item {     float weight;     int value; };  // Node structure to store information of decision // tree struct Node {     // level --> Level of node in decision tree (or index     //             in arr[]     // profit --> Profit of nodes on path from root to this     //         node (including this node)     // bound ---> Upper bound of maximum profit in subtree     //         of this node/     int level, profit, bound;     float weight; };  // Comparison function to sort Item according to // val/weight ratio bool cmp(Item a, Item b) {     double r1 = (double)a.value / a.weight;     double r2 = (double)b.value / b.weight;     return r1 > r2; }  // Returns bound of profit in subtree rooted with u. // This function mainly uses Greedy solution to find // an upper bound on maximum profit. int bound(Node u, int n, int W, Item arr[]) {     // if weight overcomes the knapsack capacity, return     // 0 as expected bound     if (u.weight >= W)         return 0;      // initialize bound on profit by current profit     int profit_bound = u.profit;      // start including items from index 1 more to current     // item index     int j = u.level + 1;     int totweight = u.weight;      // checking index condition and knapsack capacity     // condition     while ((j < n) && (totweight + arr[j].weight <= W))     {         totweight += arr[j].weight;         profit_bound += arr[j].value;         j++;     }      // If k is not n, include last item partially for     // upper bound on profit     if (j < n)         profit_bound += (W - totweight) * arr[j].value /                                         arr[j].weight;      return profit_bound; }  // Returns maximum profit we can get with capacity W int knapsack(int W, Item arr[], int n) {     // sorting Item on basis of value per unit     // weight.     sort(arr, arr + n, cmp);      // make a queue for traversing the node     queue<Node> Q;     Node u, v;      // dummy node at starting     u.level = -1;     u.profit = u.weight = 0;     Q.push(u);      // One by one extract an item from decision tree     // compute profit of all children of extracted item     // and keep saving maxProfit     int maxProfit = 0;     while (!Q.empty())     {         // Dequeue a node         u = Q.front();         Q.pop();          // If it is starting node, assign level 0         if (u.level == -1)             v.level = 0;          // If there is nothing on next level         if (u.level == n-1)             continue;          // Else if not last node, then increment level,         // and compute profit of children nodes.         v.level = u.level + 1;          // Taking current level's item add current         // level's weight and value to node u's         // weight and value         v.weight = u.weight + arr[v.level].weight;         v.profit = u.profit + arr[v.level].value;          // If cumulated weight is less than W and         // profit is greater than previous profit,         // update maxprofit         if (v.weight <= W && v.profit > maxProfit)             maxProfit = v.profit;          // Get the upper bound on profit to decide         // whether to add v to Q or not.         v.bound = bound(v, n, W, arr);          // If bound value is greater than profit,         // then only push into queue for further         // consideration         if (v.bound > maxProfit)             Q.push(v);          // Do the same thing, but Without taking         // the item in knapsack         v.weight = u.weight;         v.profit = u.profit;         v.bound = bound(v, n, W, arr);         if (v.bound > maxProfit)             Q.push(v);     }      return maxProfit; }  // driver program to test above function int main() {     int W = 10; // Weight of knapsack     Item arr[] = {{2, 40}, {3.14, 50}, {1.98, 100},                 {5, 95}, {3, 30}};     int n = sizeof(arr) / sizeof(arr[0]);      cout << "Maximum possible profit = "         << knapsack(W, arr, n);      return 0; } 
Java
import java.util.Arrays; import java.util.Comparator; import java.util.PriorityQueue;  class Item {     float weight;     int value;      Item(float weight, int value) {         this.weight = weight;         this.value = value;     } }  class Node {     int level, profit, bound;     float weight;      Node(int level, int profit, float weight) {         this.level = level;         this.profit = profit;         this.weight = weight;     } }  public class KnapsackBranchAndBound {     static Comparator<Item> itemComparator = (a, b) -> {         double ratio1 = (double) a.value / a.weight;         double ratio2 = (double) b.value / b.weight;         // Sorting in decreasing order of value per unit weight         return Double.compare(ratio2, ratio1);     };      static int bound(Node u, int n, int W, Item[] arr) {         if (u.weight >= W)             return 0;          int profitBound = u.profit;         int j = u.level + 1;         float totalWeight = u.weight;          while (j < n && totalWeight + arr[j].weight <= W) {             totalWeight += arr[j].weight;             profitBound += arr[j].value;             j++;         }          if (j < n)             profitBound += (int) ((W - totalWeight) * arr[j].value / arr[j].weight);          return profitBound;     }      static int knapsack(int W, Item[] arr, int n) {         Arrays.sort(arr, itemComparator);         PriorityQueue<Node> priorityQueue =         new PriorityQueue<>((a, b) -> Integer.compare(b.bound, a.bound));         Node u, v;          u = new Node(-1, 0, 0);         priorityQueue.offer(u);          int maxProfit = 0;          while (!priorityQueue.isEmpty()) {             u = priorityQueue.poll();              if (u.level == -1)                 v = new Node(0, 0, 0);             else if (u.level == n - 1)                 continue;             else                 v = new Node(u.level + 1, u.profit, u.weight);              v.weight += arr[v.level].weight;             v.profit += arr[v.level].value;              if (v.weight <= W && v.profit > maxProfit)                 maxProfit = v.profit;              v.bound = bound(v, n, W, arr);              if (v.bound > maxProfit)                 priorityQueue.offer(v);              v = new Node(u.level + 1, u.profit, u.weight);             v.bound = bound(v, n, W, arr);              if (v.bound > maxProfit)                 priorityQueue.offer(v);         }          return maxProfit;     }      public static void main(String[] args) {         int W = 10;         Item[] arr = {             new Item(2, 40),             new Item(3.14f, 50),             new Item(1.98f, 100),             new Item(5, 95),             new Item(3, 30)         };         int n = arr.length;          int maxProfit = knapsack(W, arr, n);         System.out.println("Maximum possible profit = " + maxProfit);     } } 
Python
from queue import PriorityQueue  class Item:     def __init__(self, weight, value):         self.weight = weight         self.value = value  class Node:     def __init__(self, level, profit, weight):         self.level = level      # Level of the node in the decision tree (or index in arr[])         self.profit = profit    # Profit of nodes on the path from root to this node (including this node)         self.weight = weight    # Total weight at the node      def __lt__(self, other):         return other.weight < self.weight  # Compare based on weight in descending order  def bound(u, n, W, arr):     # Calculate the upper bound of profit for a node in the search tree     if u.weight >= W:         return 0      profit_bound = u.profit     j = u.level + 1     total_weight = u.weight      # Greedily add items to the knapsack until the weight limit is reached     while j < n and total_weight + arr[j].weight <= W:         total_weight += arr[j].weight         profit_bound += arr[j].value         j += 1      # If there are still items left, calculate the fractional contribution of the next item     if j < n:         profit_bound += int((W - total_weight) * arr[j].value / arr[j].weight)      return profit_bound  def knapsack(W, arr, n):     # Sort items based on value-to-weight ratio in non-ascending order     arr.sort(key=lambda x: x.value / x.weight, reverse=True)          priority_queue = PriorityQueue()     u = Node(-1, 0, 0)  # Dummy node at the starting     priority_queue.put(u)      max_profit = 0      while not priority_queue.empty():         u = priority_queue.get()          if u.level == -1:             v = Node(0, 0, 0)  # Starting node         elif u.level == n - 1:             continue  # Skip if it is the last level (no more items to consider)         else:             v = Node(u.level + 1, u.profit, u.weight)  # Node without considering the next item          v.weight += arr[v.level].weight         v.profit += arr[v.level].value          # If the cumulated weight is less than or equal to W and profit is greater than previous profit, update maxProfit         if v.weight <= W and v.profit > max_profit:             max_profit = v.profit          v_bound = bound(v, n, W, arr)         # If the bound value is greater than current maxProfit, add the node to the priority queue for further consideration         if v_bound > max_profit:             priority_queue.put(v)          # Node considering the next item without adding it to the knapsack         v = Node(u.level + 1, u.profit, u.weight)         v_bound = bound(v, n, W, arr)         # If the bound value is greater than current maxProfit, add the node to the priority queue for further consideration         if v_bound > max_profit:             priority_queue.put(v)      return max_profit  # Driver program to test the above function W = 10 arr = [     Item(2, 40),     Item(3.14, 50),     Item(1.98, 100),     Item(5, 95),     Item(3, 30) ] n = len(arr)  max_profit = knapsack(W, arr, n) print("Maximum possible profit =", max_profit) 
C#
using System; using System.Collections.Generic;  class Item {     public float Weight { get; }     public int Value { get; }      public Item(float weight, int value)     {         Weight = weight;         Value = value;     } }  class Node {     public int Level { get; }     public int Profit { get; set; }     public float Weight { get; set; }     public int Bound { get; set; }      public Node(int level, int profit, float weight)     {         Level = level;         Profit = profit;         Weight = weight;     } }   class KnapsackBranchAndBound {     static Comparison<Item> itemComparison = (a, b) =>     {         double ratio1 = (double)a.Value / a.Weight;         double ratio2 = (double)b.Value / b.Weight;         // Sorting in decreasing order of value per unit weight         return ratio2.CompareTo(ratio1);     };      static int Bound(Node u, int n, int W, Item[] arr)     {         if (u.Weight >= W)             return 0;          int profitBound = u.Profit;         int j = u.Level + 1;         float totalWeight = u.Weight;          while (j < n && totalWeight + arr[j].Weight <= W)         {             totalWeight += arr[j].Weight;             profitBound += arr[j].Value;             j++;         }          if (j < n)             profitBound += (int)((W - totalWeight) * arr[j].Value / arr[j].Weight);          return profitBound;     }      static int Knapsack(int W, Item[] arr, int n)     {         Array.Sort(arr, itemComparison);         PriorityQueue<Node> priorityQueue =             new PriorityQueue<Node>((a, b) => b.Bound.CompareTo(a.Bound));         Node u, v;          u = new Node(-1, 0, 0);         priorityQueue.Enqueue(u);          int maxProfit = 0;          while (priorityQueue.Count > 0)         {             u = priorityQueue.Dequeue();              if (u.Level == -1)                 v = new Node(0, 0, 0);             else if (u.Level == n - 1)                 continue;             else                 v = new Node(u.Level + 1, u.Profit, u.Weight);              v.Weight += arr[v.Level].Weight;             v.Profit += arr[v.Level].Value;              if (v.Weight <= W && v.Profit > maxProfit)                 maxProfit = v.Profit;              v.Bound = Bound(v, n, W, arr);              if (v.Bound > maxProfit)                 priorityQueue.Enqueue(v);              v = new Node(u.Level + 1, u.Profit, u.Weight);             v.Bound = Bound(v, n, W, arr);              if (v.Bound > maxProfit)                 priorityQueue.Enqueue(v);         }          return maxProfit;     }      static void Main()     {         int W = 10;         Item[] arr = {             new Item(2, 40),             new Item(3.14f, 50),             new Item(1.98f, 100),             new Item(5, 95),             new Item(3, 30)         };         int n = arr.Length;          int maxProfit = Knapsack(W, arr, n);         Console.WriteLine("Maximum possible profit = " + maxProfit);     } }  class PriorityQueue<T> {     private List<T> data;     private Comparison<T> comparison;      public PriorityQueue(Comparison<T> comparison)     {         this.data = new List<T>();         this.comparison = comparison;     }      public void Enqueue(T item)     {         data.Add(item);         int childIndex = data.Count - 1;         while (childIndex > 0)         {             int parentIndex = (childIndex - 1) / 2;             if (comparison(data[childIndex], data[parentIndex]) > 0)             {                 T tmp = data[childIndex];                 data[childIndex] = data[parentIndex];                 data[parentIndex] = tmp;             }             else             {                 break;             }             childIndex = parentIndex;         }     }      public T Dequeue()     {         int lastIndex = data.Count - 1;         T frontItem = data[0];         data[0] = data[lastIndex];         data.RemoveAt(lastIndex);          lastIndex--;         int parentIndex = 0;         while (true)         {             int childIndex = parentIndex * 2 + 1;             if (childIndex > lastIndex)                 break;              int rightChild = childIndex + 1;             if (rightChild <= lastIndex && comparison(data[rightChild], data[childIndex]) > 0)                 childIndex = rightChild;              if (comparison(data[parentIndex], data[childIndex]) > 0)                 break;              T tmp = data[parentIndex];             data[parentIndex] = data[childIndex];             data[childIndex] = tmp;              parentIndex = childIndex;         }          return frontItem;     }      public int Count     {         get { return data.Count; }     } } 
JavaScript
class Item {     constructor(weight, value) {         this.weight = weight;         this.value = value;     } }  class Node {     constructor(level, profit, weight) {         this.level = level;         this.profit = profit;         this.weight = weight;         this.bound = 0;     } }  // Comparator function for sorting items in decreasing order of value per unit weight const itemComparator = (a, b) => {     const ratio1 = a.value / a.weight;     const ratio2 = b.value / b.weight;     return ratio2 - ratio1; };  function bound(u, n, W, arr) {     if (u.weight >= W)         return 0;      let profitBound = u.profit;     let j = u.level + 1;     let totalWeight = u.weight;      while (j < n && totalWeight + arr[j].weight <= W) {         totalWeight += arr[j].weight;         profitBound += arr[j].value;         j++;     }      if (j < n)         profitBound += Math.floor((W - totalWeight) * arr[j].value / arr[j].weight);      return profitBound; }  function knapsack(W, arr, n) {     arr.sort(itemComparator);     const priorityQueue = new PriorityQueue((a, b) => b.bound - a.bound);     let u, v;      u = new Node(-1, 0, 0);     priorityQueue.enqueue(u);      let maxProfit = 0;      while (!priorityQueue.isEmpty()) {         u = priorityQueue.dequeue();          if (u.level === -1)             v = new Node(0, 0, 0);         else if (u.level === n - 1)             continue;         else             v = new Node(u.level + 1, u.profit, u.weight);          v.weight += arr[v.level].weight;         v.profit += arr[v.level].value;          if (v.weight <= W && v.profit > maxProfit)             maxProfit = v.profit;          v.bound = bound(v, n, W, arr);          if (v.bound > maxProfit)             priorityQueue.enqueue(v);          v = new Node(u.level + 1, u.profit, u.weight);         v.bound = bound(v, n, W, arr);          if (v.bound > maxProfit)             priorityQueue.enqueue(v);     }      return maxProfit; }  // PriorityQueue implementation class PriorityQueue {     constructor(compareFunction) {         this.heap = [];         this.compare = compareFunction;     }      enqueue(item) {         this.heap.push(item);         let i = this.heap.length - 1;          while (i > 0) {             let parent = Math.floor((i - 1) / 2);             if (this.compare(this.heap[i], this.heap[parent]) >= 0)                 break;              this.swap(i, parent);             i = parent;         }     }      dequeue() {         if (this.isEmpty())             throw new Error("Priority queue is empty");          const root = this.heap[0];         const last = this.heap.length - 1;          this.heap[0] = this.heap[last];         this.heap.pop();          let i = 0;         while (true) {             const leftChild = 2 * i + 1;             const rightChild = 2 * i + 2;             let smallest = i;              if (leftChild < this.heap.length && this.compare(this.heap[leftChild], this.heap[smallest]) < 0)                 smallest = leftChild;              if (rightChild < this.heap.length && this.compare(this.heap[rightChild], this.heap[smallest]) < 0)                 smallest = rightChild;              if (smallest === i)                 break;              this.swap(i, smallest);             i = smallest;         }          return root;     }      isEmpty() {         return this.heap.length === 0;     }      swap(i, j) {         const temp = this.heap[i];         this.heap[i] = this.heap[j];         this.heap[j] = temp;     } }  // Driver program to test the above function const W = 10; const arr = [     new Item(2, 40),     new Item(3.14, 50),     new Item(1.98, 100),     new Item(5, 95),     new Item(3, 30) ]; const n = arr.length;  const maxProfit = knapsack(W, arr, n); console.log("Maximum possible profit = " + maxProfit); 

Output
Maximum possible profit = 235

Time Complexity: O(2N)
Auxiliary Space: O(N)

Branch and bound is very useful technique for searching a solution but in worst case, we need to fully calculate the entire tree. At best, we only need to fully calculate one path through the tree and prune the rest of it. 



Next Article
0/1 Knapsack using Least Cost Branch and Bound
author
kartik
Improve
Article Tags :
  • Arrays
  • Branch and Bound
  • DSA
  • knapsack
Practice Tags :
  • Arrays

Similar Reads

  • Introduction to Knapsack Problem, its Types and How to solve them
    The Knapsack problem is an example of the combinational optimization problem. This problem is also commonly known as the "Rucksack Problem". The name of the problem is defined from the maximization problem as mentioned below: Given a bag with maximum weight capacity of W and a set of items, each hav
    6 min read
  • Fractional Knapsack

    • Fractional Knapsack Problem
      Given two arrays, val[] and wt[], representing the values and weights of items, and an integer capacity representing the maximum weight a knapsack can hold, the task is to determine the maximum total value that can be achieved by putting items in the knapsack. You are allowed to break items into fra
      8 min read

    • Fractional Knapsack Queries
      Given an integer array, consisting of positive weights "W" and their values "V" respectively as a pair and some queries consisting of an integer 'C' specifying the capacity of the knapsack, find the maximum value of products that can be put in the knapsack if the breaking of items is allowed. Exampl
      9 min read

    • Difference between 0/1 Knapsack problem and Fractional Knapsack problem
      What is Knapsack Problem?Suppose you have been given a knapsack or bag with a limited weight capacity, and each item has some weight and value. The problem here is that "Which item is to be placed in the knapsack such that the weight limit does not exceed and the total value of the items is as large
      13 min read

    0/1 Knapsack

    • 0/1 Knapsack Problem
      Given n items where each item has some weight and profit associated with it and also given a bag with capacity W, [i.e., the bag can hold at most W weight in it]. The task is to put the items into the bag such that the sum of profits associated with them is the maximum possible. Note: The constraint
      15+ min read

    • Printing Items in 0/1 Knapsack
      Given weights and values of n items, put these items in a knapsack of capacity W to get the maximum total value in the knapsack. In other words, given two integer arrays, val[0..n-1] and wt[0..n-1] represent values and weights associated with n items respectively. Also given an integer W which repre
      12 min read

    • 0/1 Knapsack Problem to print all possible solutions
      Given weights and profits of N items, put these items in a knapsack of capacity W. The task is to print all possible solutions to the problem in such a way that there are no remaining items left whose weight is less than the remaining capacity of the knapsack. Also, compute the maximum profit.Exampl
      10 min read

    • 0-1 knapsack queries
      Given an integer array W[] consisting of weights of the items and some queries consisting of capacity C of knapsack, for each query find maximum weight we can put in the knapsack. Value of C doesn't exceed a certain integer C_MAX. Examples: Input: W[] = {3, 8, 9} q = {11, 10, 4} Output: 11 9 3 If C
      12 min read

    • 0/1 Knapsack using Branch and Bound
      Given two arrays v[] and w[] that represent values and weights associated with n items respectively. Find out the maximum value subset(Maximum Profit) of v[] such that the sum of the weights of this subset is smaller than or equal to Knapsack capacity W. Note: The constraint here is we can either pu
      15+ min read

    • 0/1 Knapsack using Least Cost Branch and Bound
      Given N items with weights W[0..n-1], values V[0..n-1] and a knapsack with capacity C, select the items such that:   The sum of weights taken into the knapsack is less than or equal to C.The sum of values of the items in the knapsack is maximum among all the possible combinations.Examples:   Input:
      15+ min read

  • Unbounded Fractional Knapsack
    Given the weights and values of n items, the task is to put these items in a knapsack of capacity W to get the maximum total value in the knapsack, we can repeatedly put the same item and we can also put a fraction of an item. Examples: Input: val[] = {14, 27, 44, 19}, wt[] = {6, 7, 9, 8}, W = 50 Ou
    5 min read
  • Unbounded Knapsack (Repetition of items allowed)
    Given a knapsack weight, say capacity and a set of n items with certain value vali and weight wti, The task is to fill the knapsack in such a way that we can get the maximum profit. This is different from the classical Knapsack problem, here we are allowed to use an unlimited number of instances of
    15+ min read
  • Unbounded Knapsack (Repetition of items allowed) | Efficient Approach
    Given an integer W, arrays val[] and wt[], where val[i] and wt[i] are the values and weights of the ith item, the task is to calculate the maximum value that can be obtained using weights not exceeding W. Note: Each weight can be included multiple times. Examples: Input: W = 4, val[] = {6, 18}, wt[]
    8 min read
  • Double Knapsack | Dynamic Programming
    Given an array arr[] containing the weight of 'n' distinct items, and two knapsacks that can withstand capactiy1 and capacity2 weights, the task is to find the sum of the largest subset of the array 'arr', that can be fit in the two knapsacks. It's not allowed to break any items in two, i.e. an item
    15+ min read
  • Some Problems of Knapsack problem

    • Partition a Set into Two Subsets of Equal Sum
      Given an array arr[], the task is to check if it can be partitioned into two parts such that the sum of elements in both parts is the same.Note: Each element is present in either the first subset or the second subset, but not in both. Examples: Input: arr[] = [1, 5, 11, 5]Output: true Explanation: T
      15+ min read

    • Count of subsets with sum equal to target
      Given an array arr[] of length n and an integer target, the task is to find the number of subsets with a sum equal to target. Examples: Input: arr[] = [1, 2, 3, 3], target = 6 Output: 3 Explanation: All the possible subsets are [1, 2, 3], [1, 2, 3] and [3, 3] Input: arr[] = [1, 1, 1, 1], target = 1
      15+ min read

    • Length of longest subset consisting of A 0s and B 1s from an array of strings
      Given an array arr[] consisting of binary strings, and two integers a and b, the task is to find the length of the longest subset consisting of at most a 0s and b 1s. Examples: Input: arr[] = ["1" ,"0" ,"0001" ,"10" ,"111001"], a = 5, b = 3Output: 4Explanation: One possible way is to select the subs
      15+ min read

    • Breaking an Integer to get Maximum Product
      Given a number n, the task is to break n in such a way that multiplication of its parts is maximized. Input : n = 10Output: 36Explanation: 10 = 4 + 3 + 3 and 4 * 3 * 3 = 36 is the maximum possible product. Input: n = 8Output: 18Explanation: 8 = 2 + 3 + 3 and 2 * 3 * 3 = 18 is the maximum possible pr
      15+ min read

    • Coin Change - Minimum Coins to Make Sum
      Given an array of coins[] of size n and a target value sum, where coins[i] represent the coins of different denominations. You have an infinite supply of each of the coins. The task is to find the minimum number of coins required to make the given value sum. If it is not possible to form the sum usi
      15+ min read

    • Coin Change - Count Ways to Make Sum
      Given an integer array of coins[] of size n representing different types of denominations and an integer sum, the task is to count all combinations of coins to make a given value sum. Note: Assume that you have an infinite supply of each type of coin. Examples: Input: sum = 4, coins[] = [1, 2, 3]Out
      15+ min read

    • Maximum sum of values of N items in 0-1 Knapsack by reducing weight of at most K items in half
      Given weights and values of N items and the capacity W of the knapsack. Also given that the weight of at most K items can be changed to half of its original weight. The task is to find the maximum sum of values of N items that can be obtained such that the sum of weights of items in knapsack does no
      15+ min read

geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences