I have a set of nodes A-G, Z, with weighted edges defined, where A-G are various nodes in a funnel, with Z at the very bottom.
Visualize a funnel (V-shaped) with various edges, but eventually pointed towards Z, the final node, like water flowing down to a single point Z. We want to find the cheapest path down to Z which covers all nodes in the funnel.
Here are the constraints:
Which boost graph algorithm should I use to find the optimal set of edges for this problem?
So, the set of edges should be (A-B, B-D, D-E, E-Z, C-G, F-G, G-Z)
I am certain this is not a new problem: I just don't know enough graph theory to identify/name the algorithm.
Update
While researching the problem some more, I found that if the graph were not directed, the problem is reduced to a Minimum Spanning Tree. In other words, if we did not specify, a priori, that Z is the lowest point in the graph (through the use of arrows), and water were allowed to flow in both directions (generally true, unless we have valves), then this second model will work fine.
Of course, instead of being forced to use the old the G-Z directed edge, we can now choose the new F-Z undirected edge for a smaller weight.
In light of these results, if we truly need the edges to be directed, liori's answer is the best response for the original question (ie an algorithm needs to be coded).
Output
D <--> E with weight of 1
F <--> G with weight of 1
A <--> B with weight of 2
E <--> Z with weight of 2
C <--> G with weight of 2
F <--> Z with weight of 2
B <--> D with weight of 3
Total Weight = 13
Code for Undirected Acyclic Graph, using a Minimum Spanning Tree
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/kruskal_min_spanning_tree.hpp>
#include <iostream>
int
main()
{
using namespace boost;
typedef adjacency_list < vecS, vecS, undirectedS,
no_property, property < edge_weight_t, int > > Graph;
typedef graph_traits < Graph >::edge_descriptor Edge;
typedef graph_traits < Graph >::vertex_descriptor Vertex;
typedef std::pair<int, int> E;
char letter[] = "ABCDEFGZ";
const int num_nodes = 8;
E edge_array[] = {
E(0,1), E(1,2), E(1,3), E(3,6), E(3,5), E(3,4), E(2,5), E(2,6),
E(5,7), E(5,6), E(6,7), E(4,7)
};
int weights[] = { 2, 6, 3, 5, 3, 1, 4, 2, 2, 1, 3, 2 };
std::size_t num_edges = sizeof(edge_array) / sizeof(E);
Graph g(edge_array, edge_array + num_edges, weights, num_nodes);
property_map < Graph, edge_weight_t >::type weight = get(edge_weight, g);
std::vector < Edge > spanning_tree;
kruskal_minimum_spanning_tree(g, std::back_inserter(spanning_tree));
int total_weight = 0;
for (std::vector < Edge >::iterator ei = spanning_tree.begin();
ei != spanning_tree.end(); ++ei)
{
std::cout << letter[source(*ei, g)] << " <--> " << letter[target(*ei, g)]
<< " with weight of " << weight[*ei]
<< std::endl;
total_weight += weight[*ei];
}
std::cout << "Total Weight = " << total_weight << std::endl;
return EXIT_SUCCESS;
}
So, you need the cheapest way to go from Z
backwards into each node. Your problem is equivalent to finding a spanning tree on a DAG, except that you need to transform your DAG so that the edges point to the opposite direction. As explained in this answer, you should check algorithms such as Chu–Liu/Edmonds' algorithm.
It seems that there are no ready-made algorithms in Boost Graph for that, though. You'll probably need to build your own algorithm.
This is a problem that can be solved with a Uniform Cost Search. This algorithm can be applied to any directed graph that contains at least one solution.
This will find the path of the lowest total edge cost.
If you are looking for the path that covers the least number of nodes, you would want a Breadth First Search
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With