当前位置:   article > 正文

算法小课堂(九)分支限界法

分支限界法

一、概述

1.1概念

分支限界法是一种求解最优化问题的算法,常以广度优先或以最小耗费(最大效益)优先的方式搜索问题的解空间树。其基本思想是把问题的可行解展开,再由各个分支寻找最佳解。

在分支限界法中,分支是使用广度优先策略,依次生成扩展结点的所有分支。限界是在结点扩展过程中,计算结点的上界,搜索的同时剪掉某些分支。

1.2与回溯法区别

求解目标不同

  • 回溯法是找出满足约束条件的所有解
  • 分支限界法是找出满足条件的一个解,或某种意义下的最优解

搜索方式不同

  • 回溯法:深度优先
  • 分支限界法:广度优先或最小耗费优先

1.3分类

队列式分支限界法    

将活结点表组织成一个队列,并按队列的先进先出原则选取下一个结点为当前扩展结点。

优先队列式分支限界法

将活结点表组织成一个优先队列,并按优先队列中规定的结点优先级选取优先级最高的下一个结点为当前扩展结点。

  • 最大优先队列:使用最大堆,体现最大效益优先
  • 最小优先队列:使用最小堆,体现最小费用优先

二、相关问题

2.1  0-1背包问题

问题描述

  • 给定n种物品和一个背包。物品i的重量是wi,其价值为vi,背包的容量为c。
  • 应如何选择装入背包的物品,使得装入背包中物品的总价值最大?
  • 在选择装入背包的物品时,对每种物品i只有2种选择,即装入背包或不装入背包。不能将物品i装入背包多次,也不能只装入部分的物品i。

队列式分支限界法

背包的容量c是30,图解如下: 

  1. #include<queue>
  2. #include<iostream>
  3. #include<vector>
  4. #include<cstdio>
  5. #include<string.h>
  6. #include<algorithm>
  7. #define N 100
  8. using namespace std;
  9. //记录物品信息
  10. struct goods{
  11. int wight;//物品重量
  12. int value;//物品价值
  13. };
  14. //记录各节点信息
  15. struct Node{
  16. int lv;//记录当前节点层数
  17. int wei;//当前总重量
  18. int val;//当前总价值
  19. int status[N];//当前节点的物品状态数组 0/1
  20. };
  21. int n,bestValue,cv,cw,C;//物品数量,价值最大,当前价值,当前重量,背包容量
  22. int final[N];//最终存储状态
  23. struct goods goods[N];
  24. int BranchBound(){
  25. queue<Node> que;
  26. Node n1={0,0,0,{0}};
  27. que.push(n1);
  28. while(!que.empty()){
  29. Node nd;
  30. nd=que.front();
  31. int lv=nd.lv; //当前第几层,可以作为goods[]数组的索引
  32. //如果是最后一层节点,
  33. //1. 记录该节点的信息
  34. //2. 弹出队列
  35. //3. 并跳过循环
  36. if(lv>=n){
  37. if(nd.val>bestValue)
  38. {
  39. bestValue=nd.val;
  40. for(int i=0;i<n;i++)
  41. {
  42. final[i]=nd.status[i];
  43. }
  44. }
  45. que.pop();
  46. continue;
  47. }
  48. //判断左孩子节点
  49. //该节点重量加上 下一个物品
  50. if(nd.wei+goods[lv].wight<=C)
  51. {
  52. //构造左孩子节点
  53. Node mid = que.front();
  54. mid.lv+=1;
  55. mid.val+=goods[lv].value;
  56. mid.wei+=goods[lv].wight;
  57. //置左孩子结点的 下一状态位为1
  58. mid.status[lv]=1;
  59. //将左孩子入队
  60. que.push(mid);
  61. }
  62. //构造并加入右孩子节点
  63. Node mid2 = que.front();
  64. mid2.status[lv]=0;
  65. mid2.lv+=1;
  66. que.push(mid2);
  67. //将当前访问节点弹出
  68. que.pop();
  69. }
  70. return bestValue;
  71. }
  72. int main()
  73. {
  74. printf("物品种类n:");
  75. scanf("%d",&n);
  76. printf("背包容量C:");
  77. scanf("%d",&C);
  78. for(int i = 0; i < n; i++){
  79. printf("物品%d的重量w[%d]及其价值v[%d]:",i+1,i+1,i+1);
  80. scanf("%d%d",&goods[i].wight,&goods[i].value);
  81. }
  82. int sum3 = BranchBound();
  83. printf("回溯法求解0/1背包问题:\nX=[");
  84. for(int i = 0; i < n; i++)
  85. cout << final[i] <<" ";//输出所求X[n]矩阵
  86. printf("] 装入总价值%d\n",sum3);
  87. return 0;
  88. }

优先分支限界法

  1. #include <iostream> // 引入输入输出流头文件
  2. #include <queue> // 引入队列头文件
  3. #include <vector> // 引入向量头文件
  4. #include <algorithm> // 引入算法头文件
  5. using namespace std; // 使用标准命名空间
  6. // 物品结构体
  7. struct Item {
  8. int weight; // 物品的重量
  9. int value; // 物品的价值
  10. };
  11. // 节点结构体
  12. struct Node {
  13. int level; // 节点的层次
  14. int profit; // 节点的收益
  15. int weight; // 节点的重量
  16. int bound; // 节点的上界
  17. vector<bool> taken; // 节点所选取的物品序列
  18. };
  19. // 优先队列的比较函数
  20. struct CompareNode {
  21. bool operator()(const Node& a, const Node& b) {
  22. return a.bound < b.bound; // 按照上界从大到小排序
  23. }
  24. };
  25. // 计算节点的上界
  26. int calculateBound(Node u, int n, int c, vector<Item>& items) {
  27. if (u.weight >= c) // 如果节点重量超过背包容量,返回0
  28. return 0;
  29. int profitBound = u.profit; // 初始化上界为节点收益
  30. int j = u.level + 1; // 从下一层开始考虑物品
  31. int totalWeight = u.weight; // 初始化总重量为节点重量
  32. while ((j < n) && (totalWeight + items[j].weight <= c)) { // 当物品未考虑完且总重量不超过背包容量时,循环执行
  33. totalWeight += items[j].weight; // 将物品加入总重量
  34. profitBound += items[j].value; // 将物品价值加入上界
  35. j++; // 考虑下一个物品
  36. }
  37. if (j < n) // 如果还有物品未考虑完,按照单位价值比例加入上界
  38. profitBound += (c - totalWeight) * items[j].value / items[j].weight;
  39. return profitBound; // 返回上界值
  40. }
  41. // 优先队列式分支限界法解决0-1背包问题
  42. int knapsack(int n, int c, vector<int>& w, vector<int>& vv) {
  43. vector<Item> items(n); // 创建一个物品向量
  44. for (int i = 0; i < n; i++) { // 遍历输入的重量和价值向量,将其转化为物品结构体存入物品向量中
  45. items[i].weight = w[i];
  46. items[i].value = vv[i];
  47. }
  48. sort(items.begin(), items.end(), [](const Item& a, const Item& b) {
  49. return (double)a.value / a.weight > (double)b.value / b.weight;
  50. }); // 按照单位价值从大到小对物品向量进行排序
  51. priority_queue<Node, vector<Node>, CompareNode> PQ; // 创建一个优先队列,用于存储节点
  52. Node u, v; // 定义两个节点变量,u为当前节点,v为扩展节点
  53. u.level = -1; // 初始化u的层次为-1,表示根节点之前的虚拟节点
  54. u.profit = 0; // 初始化u的收益为0
  55. u.weight = 0; // 初始化u的重量为0
  56. int maxProfit = 0; // 初始化最大收益为0
  57. u.bound = calculateBound(u, n, c, items); // 计算u的上界值
  58. PQ.push(u); // 将u压入优先队列中
  59. while (!PQ.empty()) { // 当优先队列不为空时,循环执行
  60. u = PQ.top(); // 取出优先队列中的第一个元素,即上界最大的节点,赋值给u
  61. PQ.pop(); // 弹出优先队列中的第一个元素
  62. if (u.bound > maxProfit) { // 如果u的上界大于当前最大收益,说明有可能找到更优解,继续扩展子节点,否则剪枝处理
  63. v.level = u.level + 1; // 将v的层次设为u的下一层,即考虑下一个物品是否放入背包中
  64. v.weight = u.weight + items[v.level].weight; // 将v的重量设为u的重量加上当前考虑物品的重量,即假设放入背包中的情况
  65. v.profit = u.profit + items[v.level].value; // 将v的收益设为u的收益加上当前考虑物品的价值,即假设放入背包中的情况
  66. v.taken = u.taken; // 将v所选取的物品序列设为u所选取的物品序列,即继承父节点的选择情况
  67. v.taken.push_back(true); // 在v所选取的物品序列末尾添加true,表示当前考虑物品被放入背包中
  68. if (v.weight <= c && v.profit > maxProfit)
  69. maxProfit = v.profit;
  70. /* 如果v的重量不超过背包容量且v的收益大于当前最大收益,
  71. 则将最大收益更新为v的收益,即找到了一个更优解 */
  72. v.bound = calculateBound(v, n, c, items);
  73. /* 计算v的上界值 */
  74. if (v.bound > maxProfit)
  75. PQ.push(v);
  76. /* 如果v的上界大于当前最大收益,
  77. 则将v压入优先队列中,等待后续扩展 */
  78. v.weight = u.weight;
  79. /* 将v的重量设为u的重量,即假设不放入背包中的情况 */
  80. v.profit = u.profit;
  81. /* 将v的收益设为u的收益,即假设不放入背包中的情况 */
  82. v.taken = u.taken;
  83. /* 将v所选取的物品序列设为u所选取的物品序列,
  84. 即继承父节点的选择情况 */
  85. v.taken.push_back(false);
  86. /* 在v所选取的物品序列末尾添加false,
  87. 表示当前考虑物品没有被放入背包中 */
  88. v.bound = calculateBound(v, n, c, items);
  89. /* 计算v的上界值 */
  90. if (v.bound > maxProfit)
  91. PQ.push(v);
  92. /* 如果v的上界大于当前最大收益,
  93. 则将v压入优先队列中,等待后续扩展 */
  94. }
  95. }
  96. return maxProfit;
  97. /* 返回最大收益值 */
  98. }
  99. int main() {
  100. int n = 3;
  101. /* 定义物品数量为3 */
  102. int c = 30;
  103. /* 定义背包容量为30 */
  104. vector<int> w = {16, 15, 15};
  105. /* 定义一个向量存储每个物品的重量 */
  106. vector<int> v = {45, 21, 25};
  107. /* 定义一个向量存储每个物品的价值 */
  108. int maxProfit = knapsack(n, c, w, v);
  109. /* 调用背包函数,并将返回值赋给maxProfit变量 */
  110. cout << "最大价值为:" << maxProfit << endl;
  111. return 0;
  112. }

 2.2旅行售货员问题  

问题描述:

某售货员要到若干城市去推销商品,已知各城市之间的路程,他要选定一条从驻地出发,经过每个城市一遍,最后回到住地的路线,使总的路程最短

 结果为: 1 3 2 4

队列式分支限界法 

  1. #include <iostream>
  2. #include <queue>
  3. #include <vector>
  4. using namespace std;
  5. const int INF = 1e9;
  6. struct Node {
  7. vector<int> path; // 当前路径
  8. vector<bool> visited; // 记录节点是否已访问
  9. int cost; // 当前路径的总代价
  10. int level; // 当前节点的层级
  11. Node(int n) {
  12. visited.resize(n, false);
  13. cost = 0;
  14. level = 0;
  15. }
  16. Node(const Node& other) {
  17. path = other.path;
  18. visited = other.visited;
  19. cost = other.cost;
  20. level = other.level;
  21. }
  22. };
  23. void printSolution(const vector<int>& path) {
  24. cout << "最优解是: [";
  25. for (int i = 0; i < path.size(); i++) {
  26. cout << path[i] + 1;
  27. if (i != path.size() - 1) {
  28. cout << " ";
  29. }
  30. }
  31. cout << "]" << endl;
  32. }
  33. int tsp(vector<vector<int>>& graph, vector<int>& optimalPath) {
  34. int n = graph.size();
  35. // 初始化最小代价
  36. int minCost = INF;
  37. // 创建初始节点
  38. Node rootNode(n);
  39. rootNode.path.push_back(0); // 起始节点为0
  40. rootNode.visited[0] = true;
  41. rootNode.level = 1;
  42. // 创建队列并将初始节点加入
  43. queue<Node> q;
  44. q.push(rootNode);
  45. // 遍历队列中的节点
  46. while (!q.empty()) {
  47. Node currNode = q.front();
  48. q.pop();
  49. // 如果当前节点是叶子节点
  50. if (currNode.level == n) {
  51. // 加上回到起始节点的代价
  52. currNode.cost += graph[currNode.path.back()][0];
  53. // 更新最小代价和最优路径
  54. if (currNode.cost < minCost) {
  55. minCost = currNode.cost;
  56. optimalPath = currNode.path;
  57. }
  58. }
  59. // 遍历当前节点的邻居节点
  60. for (int i = 0; i < n; i++) {
  61. if (!currNode.visited[i] && graph[currNode.path.back()][i] != -1) {
  62. // 创建新节点
  63. Node newNode = currNode;
  64. newNode.visited[i] = true;
  65. newNode.path.push_back(i);
  66. newNode.cost += graph[currNode.path.back()][i];
  67. newNode.level = currNode.level + 1;
  68. // 如果当前路径的代价小于最小代价,则加入队列继续搜索
  69. if (newNode.cost < minCost) {
  70. q.push(newNode);
  71. }
  72. }
  73. }
  74. }
  75. return minCost;
  76. }
  77. int main() {
  78. int n;
  79. cin >> n;
  80. // 读取输入的图
  81. vector<vector<int>> graph(n, vector<int>(n));
  82. for (int i = 0; i < n; i++) {
  83. for (int j = 0; j < n; j++) {
  84. cin >> graph[i][j];
  85. }
  86. }
  87. // 求解旅行售货员问题
  88. vector<int> optimalPath;
  89. int minCost = tsp(graph, optimalPath);
  90. // 输出结果
  91. cout << "最优值为: " << minCost << endl;
  92. printSolution(optimalPath);
  93. return 0;
  94. }

优先队列式分支限界法 

  1. #include <iostream>
  2. #include <queue>
  3. #include <vector>
  4. using namespace std;
  5. const int INF = 1e9;
  6. struct Node {
  7. vector<int> path; // 当前路径
  8. vector<bool> visited; // 记录节点是否已访问
  9. int cost; // 当前路径的总代价
  10. int level; // 当前节点的层级
  11. Node(int n) {
  12. visited.resize(n, false);
  13. cost = 0;
  14. level = 0;
  15. }
  16. Node(const Node& other) {
  17. path = other.path;
  18. visited = other.visited;
  19. cost = other.cost;
  20. level = other.level;
  21. }
  22. };
  23. struct CompareNode {
  24. bool operator()(const Node& node1, const Node& node2) {
  25. return node1.cost > node2.cost; // 按照代价从小到大排序
  26. }
  27. };
  28. void printSolution(const vector<int>& path) {
  29. cout << "最优解是: [";
  30. for (int i = 0; i < path.size(); i++) {
  31. cout << path[i] + 1;
  32. if (i != path.size() - 1) {
  33. cout << " ";
  34. }
  35. }
  36. cout << "]" << endl;
  37. }
  38. int tsp(vector<vector<int>>& graph, vector<int>& optimalPath) {
  39. int n = graph.size();
  40. // 初始化最小代价
  41. int minCost = INF;
  42. // 创建初始节点
  43. Node rootNode(n);
  44. rootNode.path.push_back(0); // 起始节点为0
  45. rootNode.visited[0] = true;
  46. rootNode.level = 1;
  47. // 创建优先队列并将初始节点加入
  48. priority_queue<Node, vector<Node>, CompareNode> pq;
  49. pq.push(rootNode);
  50. // 遍历优先队列中的节点
  51. while (!pq.empty()) {
  52. Node currNode = pq.top();
  53. pq.pop();
  54. // 如果当前节点是叶子节点
  55. if (currNode.level == n) {
  56. // 加上回到起始节点的代价
  57. currNode.cost += graph[currNode.path.back()][0];
  58. // 更新最小代价和最优路径
  59. if (currNode.cost < minCost) {
  60. minCost = currNode.cost;
  61. optimalPath = currNode.path;
  62. }
  63. }
  64. // 遍历当前节点的邻居节点
  65. for (int i = 0; i < n; i++) {
  66. if (!currNode.visited[i] && graph[currNode.path.back()][i] != -1) {
  67. // 创建新节点
  68. Node newNode = currNode;
  69. newNode.visited[i] = true;
  70. newNode.path.push_back(i);
  71. newNode.cost += graph[currNode.path.back()][i];
  72. newNode.level = currNode.level + 1;
  73. // 如果当前路径的代价小于最小代价,则加入优先队列继续搜索
  74. if (newNode.cost < minCost) {
  75. pq.push(newNode);
  76. }
  77. }
  78. }
  79. }
  80. return minCost;
  81. }
  82. int main() {
  83. int n;
  84. cin >> n;
  85. // 读取输入的图
  86. vector<vector<int>> graph(n, vector<int>(n));
  87. for (int i = 0; i < n; i++) {
  88. for (int j = 0; j <n; j++) {
  89. cin >> graph[i][j];
  90. }
  91. }
  92. // 求解旅行售货员问题
  93. vector<int> optimalPath;
  94. int minCost = tsp(graph, optimalPath);
  95. // 输出结果
  96. cout << "最优值为: " << minCost << endl;
  97. printSolution(optimalPath);
  98. return 0;
  99. }

2.3装载问题

问题描述:

最优装载问题:有一批n个集装箱要装上1艘载重量为C的轮船,其中集装箱i的重量为wi,在不考虑集装箱体积的情况下,如何选择装入轮船的集装箱,使得装入轮船中集装箱的总重量最大

已知最优装载问题的一个实例,n=3,C=30,W={16,15,15},试回答如下问题:

 队列式分支限界法 

  1. #include <iostream>
  2. #include <queue>
  3. #include <vector>
  4. using namespace std;
  5. struct Node {
  6. vector<int> load; // 当前装载情况
  7. int level; // 当前节点的层级
  8. int weight; // 当前装载的总重量
  9. Node(int n) {
  10. load.resize(n, 0);
  11. level = 0;
  12. weight = 0;
  13. }
  14. Node(const Node& other) {
  15. load = other.load;
  16. level = other.level;
  17. weight = other.weight;
  18. }
  19. };
  20. void knapsack(int n, int C, const vector<int>& weights) {
  21. // 初始化最优值和最优解
  22. int bestValue = 0;
  23. vector<int> bestLoad(n, 0);
  24. // 创建初始节点
  25. Node rootNode(n);
  26. rootNode.level = 0;
  27. // 创建队列并将初始节点加入
  28. queue<Node> q;
  29. q.push(rootNode);
  30. // 遍历队列中的节点
  31. while (!q.empty()) {
  32. Node currNode = q.front();
  33. q.pop();
  34. // 如果当前节点是叶子节点
  35. if (currNode.level == n) {
  36. // 更新最优值和最优解
  37. if (currNode.weight <= C && currNode.weight > bestValue) {
  38. bestValue = currNode.weight;
  39. bestLoad = currNode.load;
  40. }
  41. continue;
  42. }
  43. // 不装载第level物品的子节点
  44. Node noNode = currNode;
  45. noNode.level = currNode.level + 1;
  46. q.push(noNode);
  47. // 装载第level物品的子节点
  48. if (currNode.weight + weights[currNode.level] <= C) {
  49. Node yesNode = currNode;
  50. yesNode.level = currNode.level + 1;
  51. yesNode.load[currNode.level] = 1;
  52. yesNode.weight += weights[currNode.level];
  53. q.push(yesNode);
  54. }
  55. }
  56. // 输出结果
  57. cout << "最优值为: " << bestValue << endl;
  58. cout << "最优解为: [";
  59. for (int i = 0; i < n; i++) {
  60. cout << bestLoad[i] << " ";
  61. }
  62. cout << "]" << endl;
  63. }
  64. int main() {
  65. int n, C;
  66. cin >> n >> C;
  67. // 读取物品重量
  68. vector<int> weights(n);
  69. for (int i = 0; i < n; i++) {
  70. cin >> weights[i];
  71. }
  72. // 求解最优装载问题
  73. knapsack(n, C, weights);
  74. return 0;
  75. }

优先队列式分支限界法 

  1. #include <iostream>
  2. #include <queue>
  3. #include <vector>
  4. using namespace std;
  5. struct Node {
  6. vector<int> load; // 当前装载情况
  7. int level; // 当前节点的层级
  8. int weight; // 当前装载的总重量
  9. Node(int n) {
  10. load.resize(n, 0);
  11. level = 0;
  12. weight = 0;
  13. }
  14. Node(const Node& other) {
  15. load = other.load;
  16. level = other.level;
  17. weight = other.weight;
  18. }
  19. };
  20. struct NodeComparator {
  21. bool operator()(const Node& a, const Node& b) {
  22. return a.weight < b.weight; // 按照节点的权重(装载的总重量)升序排序
  23. }
  24. };
  25. void knapsack(int n, int C, const vector<int>& weights) {
  26. // 初始化最优值和最优解
  27. int bestValue = 0;
  28. vector<int> bestLoad(n, 0);
  29. // 创建初始节点
  30. Node rootNode(n);
  31. rootNode.level = 0;
  32. // 创建优先队列并将初始节点加入
  33. priority_queue<Node, vector<Node>, NodeComparator> pq;
  34. pq.push(rootNode);
  35. // 遍历优先队列中的节点
  36. while (!pq.empty()) {
  37. Node currNode = pq.top();
  38. pq.pop();
  39. // 如果当前节点是叶子节点
  40. if (currNode.level == n) {
  41. // 更新最优值和最优解
  42. if (currNode.weight <= C && currNode.weight > bestValue) {
  43. bestValue = currNode.weight;
  44. bestLoad = currNode.load;
  45. }
  46. continue;
  47. }
  48. // 不装载第level物品的子节点
  49. Node noNode = currNode;
  50. noNode.level = currNode.level + 1;
  51. pq.push(noNode);
  52. // 装载第level物品的子节点
  53. if (currNode.weight + weights[currNode.level] <= C) {
  54. Node yesNode = currNode;
  55. yesNode.level = currNode.level + 1;
  56. yesNode.load[currNode.level] = 1;
  57. yesNode.weight += weights[currNode.level];
  58. pq.push(yesNode);
  59. }
  60. }
  61. // 输出结果
  62. cout << "最优值为: " << bestValue << endl;
  63. cout << "最优解为: [";
  64. for (int i = 0; i < n; i++) {
  65. cout << bestLoad[i] << " ";
  66. }
  67. cout << "]" << endl;
  68. }
  69. int main() {
  70. int n, C;
  71. cin >> n >> C;
  72. // 读取物品重量
  73. vector<int> weights(n);
  74. for (int i = 0; i < n; i++) {
  75. cin >> weights[i];
  76. }
  77. // 求解最优装载问题
  78. knapsack(n, C, weights);
  79. return 0;
  80. }

6.4布线问题 

问题描述

印刷电路板将布线区域划分为n×m个方格阵列,如图所示。 精确的电路板布线问题要求确定连接方格a的中点到方格b的中点的最短布线方案。 布线时电路只能沿直线或直角布线。 为避免线路相交,已布线方格做上封闭标记,其他线路布线不允许穿过封闭区域。 为讨论方便,我们假定电路板外面的区域为已加封闭标记的方格。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/629982
推荐阅读
相关标签
  

闽ICP备14008679号