01背包回溯法复杂度_回溯算法 - 0-1背包问题

(1)算法描述

给定 num 种物品和一背包。物品 i 的重量是 weighti> 0,其价值为 pricei> 0,背包的容量为 capacity。问应如何选择装入背包中的物品,使得装入背包中物品的总价值最大?

(2)举例

对于 0-1 背包问题的一个实例,num = 4,capacity = 7,price = [9, 10, 7, 4],weight = [3, 5, 2, 1]。这 4 个物品的单位重量价值分别为 [3, 2, 3.5, 4],以物品单位重量价值的递减顺序装入物品。先装物品 4,然后装入物品 3 和 1。装入这 3 个物品后,剩余的背包容量为 1,只能装入 0.2 的物品 2。由此可以得到一个解为 x = [1, 0.2, 1, 1],其相应的价值为 22。尽管这不是一个可行解,但可以证明其价值是最优解的上届。因此,对于这个实例,最优解不超过 22。

(3)算法描述

0-1 背包问题是子集选取问题。0-1 背包问题的解空间可用子集树表示。解 0-1 背包问题的回溯法与解最优装载问题十分相似,在搜索解空间树时,只要其左子树结点是一个可行结点,搜索就进入其左子树。当右子树有可能包含最优解时才进入右子树搜索。否则将右子树剪枝。设 indeterminacyPrice 是当前剩余物品价值总和;currentPrice 是当前价值;bestPrice 是当前最优价值。当 currentPrice + indeterminacyPrice <= bestPrice 时,可剪去右子树。计算右子树中解的上界更好的方法是将剩余物品依其单位重量价值排序,然后依次装入物品,直至装不下时,再装入该物品一部分而装满背包。由此得到的价值是右子树中的一个解。

(4)代码编写

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

public classKnapsack01 {//背包容量

private staticInteger capacity;//物品个数

private staticInteger num;//物品重量数组

private staticInteger[] weight;//物品存放数组【0:不存放 1:存放】

private staticInteger[] store;//物品最优装载数组序号【0:不存放 1:存放】

private staticInteger[] bestIndex;//物品价值数组

private staticInteger[] price;//背包当前重量

private static Integer currentWeight = 0;//背包当前价值

private static Integer currentPrice = 0;//背包最优价值

private static Integer bestPrice = 0;/*** 初始化数据*/

private static voidinitData() {

Scanner input= newScanner(System.in);

System.out.println("请输入背包容量:");

capacity=input.nextInt();

System.out.println("请输入物品数量:");

num=input.nextInt();

weight= newInteger[num];

store= newInteger[num];

bestIndex= newInteger[num];

System.out.println("请输入各个物品的重量:");for (int i = 0; i < weight.length; i++) {

weight[i]=input.nextInt();

store[i]= 0;

bestIndex[i]= 0;

}

price= newInteger[num];

System.out.println("请输入各个物品的价值:");for (int i = 0; i < price.length; i++) {

price[i]=input.nextInt();

}

}/*** 根据物品价值降序排列,同时调整物品重量数组*/

private static voidsortDesc() {

Integer temp;int change = 1;for (int i = 0; i < price.length && change == 1; i++) {

change= 0;for (int j = 0; j < price.length - 1 - i; j++) {if (price[j] < price[j + 1]) {

temp= price[j]; price[j] = price[j + 1]; price[j + 1] =temp;

temp= weight[j]; weight[j] = weight[j + 1]; weight[j + 1] =temp;

change= 1;

}

}

}

}/*** 计算上届【判断】*/

private static Integer bound(inti) {

Integer cleft= capacity - currentWeight; //记录剩余背包的容量

Integer p = currentPrice; //记录当前背包的价值//【已经按照物品价值降序排列,只要物品能装下,价值一定是最大】物品装入背包时,一定要确保背包能装下该物品

while(i < weight.length && weight[i] <=cleft) {

cleft-=weight[i];

p+=price[i];

i++;

}//将第 i + 1 个物品切开,装满背包,计算最大价值

if (i

p= p + cleft * (price[i] /weight[i]);

}returnp;

}/*** 回溯寻找最优价值*/

private static void backtrack(inti) {//递归结束条件

if (i ==price.length) {if (currentPrice >bestPrice) {for (int j = 0; j < store.length; j++) {

bestIndex[j]=store[j];

}

bestPrice=currentPrice;

}return;

}if (currentWeight + weight[i] <= capacity) { //确保背包当前重量 + 物品 i 的重量 <= 当前背包容量,才有意义继续进行

store[i] = 1;

currentWeight+=weight[i];

currentPrice+=price[i];

backtrack(i+ 1);

currentWeight-=weight[i];

currentPrice-=price[i];

}//剪枝函数【判断 (背包当前价值 + 未确定物品的价值) 大于 背包最优价值,搜索右子树;否则剪枝】

if (bound(i + 1) >bestPrice) {

store[i]= 0;

backtrack(i+ 1);

}

}/*** 输出*/

private static voidprint() {

System.out.println("\n降序后各个物品重量如下:");

Stream.of(weight).forEach(element-> System.out.print(element + " "));

System.out.println();

System.out.println("降序后各个物品价值如下:");

Stream.of(price).forEach(element-> System.out.print(element + " "));

System.out.println();

System.out.println("物品最优装载数组序号【0:不装载 1:装载】:");

Stream.of(bestIndex).forEach(element-> System.out.print(element + " "));

System.out.println();

System.out.println("背包最大价值:bestPrice = " +bestPrice);

}public static voidmain(String[] args) {//初始化数据

initData();//根据物品价值降序排列,同时调整物品重量数组

sortDesc();//回溯寻找最优价值

backtrack(0);//输出

print();

}

}

0-1背包核心代码

(5)输入输出

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

请输入背包容量:7请输入物品数量:4请输入各个物品的重量:3 5 2 1请输入各个物品的价值:9 10 7 4各个物品重量如下:5 3 2 1各个物品价值如下:10 9 7 4物品最优装载数组序号【0:不装载 1:装载】:0 1 1 1背包最大价值:bestPrice= 20

输入输出

(6)总结

0-1 背包使用【回溯法-子集树】来求解,时间复杂度为 O(2n),使用深度优先遍历,递归方式求出最优解;

建议:可以依照我的代码,自行在纸上画一画,走一遍算法代码的详细流程,进而熟悉回溯法的核心思想,理解 0-1 背包问题的求解过程。


版权声明:本文为weixin_33428129原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。