1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2009
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
19 #ifndef LEMON_SUURBALLE_H
20 #define LEMON_SUURBALLE_H
22 ///\ingroup shortest_path
24 ///\brief An algorithm for finding arc-disjoint paths between two
25 /// nodes having minimum total length.
29 #include <lemon/bin_heap.h>
30 #include <lemon/path.h>
31 #include <lemon/list_graph.h>
32 #include <lemon/maps.h>
36 /// \addtogroup shortest_path
39 /// \brief Algorithm for finding arc-disjoint paths between two nodes
40 /// having minimum total length.
42 /// \ref lemon::Suurballe "Suurballe" implements an algorithm for
43 /// finding arc-disjoint paths having minimum total length (cost)
44 /// from a given source node to a given target node in a digraph.
46 /// Note that this problem is a special case of the \ref min_cost_flow
47 /// "minimum cost flow problem". This implementation is actually an
48 /// efficient specialized version of the \ref CapacityScaling
49 /// "Successive Shortest Path" algorithm directly for this problem.
50 /// Therefore this class provides query functions for flow values and
51 /// node potentials (the dual solution) just like the minimum cost flow
54 /// \tparam GR The digraph type the algorithm runs on.
55 /// \tparam LEN The type of the length map.
56 /// The default value is <tt>GR::ArcMap<int></tt>.
58 /// \warning Length values should be \e non-negative.
60 /// \note For finding node-disjoint paths this algorithm can be used
61 /// along with the \ref SplitNodes adaptor.
63 template <typename GR, typename LEN>
65 template < typename GR,
66 typename LEN = typename GR::template ArcMap<int> >
70 TEMPLATE_DIGRAPH_TYPEDEFS(GR);
72 typedef ConstMap<Arc, int> ConstArcMap;
73 typedef typename GR::template NodeMap<Arc> PredMap;
77 /// The type of the digraph the algorithm runs on.
79 /// The type of the length map.
80 typedef LEN LengthMap;
81 /// The type of the lengths.
82 typedef typename LengthMap::Value Length;
84 /// The type of the flow map.
85 typedef GR::ArcMap<int> FlowMap;
86 /// The type of the potential map.
87 typedef GR::NodeMap<Length> PotentialMap;
89 /// The type of the flow map.
90 typedef typename Digraph::template ArcMap<int> FlowMap;
91 /// The type of the potential map.
92 typedef typename Digraph::template NodeMap<Length> PotentialMap;
95 /// The type of the path structures.
96 typedef SimplePath<GR> Path;
100 // ResidualDijkstra is a special implementation of the
101 // Dijkstra algorithm for finding shortest paths in the
102 // residual network with respect to the reduced arc lengths
103 // and modifying the node potentials according to the
104 // distance of the nodes.
105 class ResidualDijkstra
107 typedef typename Digraph::template NodeMap<int> HeapCrossRef;
108 typedef BinHeap<Length, HeapCrossRef> Heap;
112 // The digraph the algorithm runs on
113 const Digraph &_graph;
116 const FlowMap &_flow;
117 const LengthMap &_length;
118 PotentialMap &_potential;
124 // The processed (i.e. permanently labeled) nodes
125 std::vector<Node> _proc_nodes;
133 ResidualDijkstra( const Digraph &graph,
135 const LengthMap &length,
136 PotentialMap &potential,
139 _graph(graph), _flow(flow), _length(length), _potential(potential),
140 _dist(graph), _pred(pred), _s(s), _t(t) {}
142 /// \brief Run the algorithm. It returns \c true if a path is found
143 /// from the source node to the target node.
145 HeapCrossRef heap_cross_ref(_graph, Heap::PRE_HEAP);
146 Heap heap(heap_cross_ref);
152 while (!heap.empty() && heap.top() != _t) {
153 Node u = heap.top(), v;
154 Length d = heap.prio() + _potential[u], nd;
155 _dist[u] = heap.prio();
157 _proc_nodes.push_back(u);
159 // Traverse outgoing arcs
160 for (OutArcIt e(_graph, u); e != INVALID; ++e) {
162 v = _graph.target(e);
163 switch(heap.state(v)) {
165 heap.push(v, d + _length[e] - _potential[v]);
169 nd = d + _length[e] - _potential[v];
171 heap.decrease(v, nd);
175 case Heap::POST_HEAP:
181 // Traverse incoming arcs
182 for (InArcIt e(_graph, u); e != INVALID; ++e) {
184 v = _graph.source(e);
185 switch(heap.state(v)) {
187 heap.push(v, d - _length[e] - _potential[v]);
191 nd = d - _length[e] - _potential[v];
193 heap.decrease(v, nd);
197 case Heap::POST_HEAP:
203 if (heap.empty()) return false;
205 // Update potentials of processed nodes
206 Length t_dist = heap.prio();
207 for (int i = 0; i < int(_proc_nodes.size()); ++i)
208 _potential[_proc_nodes[i]] += _dist[_proc_nodes[i]] - t_dist;
212 }; //class ResidualDijkstra
216 // The digraph the algorithm runs on
217 const Digraph &_graph;
219 const LengthMap &_length;
221 // Arc map of the current flow
224 // Node map of the current potentials
225 PotentialMap *_potential;
226 bool _local_potential;
233 // Container to store the found paths
234 std::vector< SimplePath<Digraph> > paths;
239 // Implementation of the Dijkstra algorithm for finding augmenting
240 // shortest paths in the residual network
241 ResidualDijkstra *_dijkstra;
245 /// \brief Constructor.
249 /// \param graph The digraph the algorithm runs on.
250 /// \param length The length (cost) values of the arcs.
251 Suurballe( const Digraph &graph,
252 const LengthMap &length ) :
253 _graph(graph), _length(length), _flow(0), _local_flow(false),
254 _potential(0), _local_potential(false), _pred(graph)
259 if (_local_flow) delete _flow;
260 if (_local_potential) delete _potential;
264 /// \brief Set the flow map.
266 /// This function sets the flow map.
267 /// If it is not used before calling \ref run() or \ref init(),
268 /// an instance will be allocated automatically. The destructor
269 /// deallocates this automatically allocated map, of course.
271 /// The found flow contains only 0 and 1 values, since it is the
272 /// union of the found arc-disjoint paths.
274 /// \return <tt>(*this)</tt>
275 Suurballe& flowMap(FlowMap &map) {
284 /// \brief Set the potential map.
286 /// This function sets the potential map.
287 /// If it is not used before calling \ref run() or \ref init(),
288 /// an instance will be allocated automatically. The destructor
289 /// deallocates this automatically allocated map, of course.
291 /// The node potentials provide the dual solution of the underlying
292 /// \ref min_cost_flow "minimum cost flow problem".
294 /// \return <tt>(*this)</tt>
295 Suurballe& potentialMap(PotentialMap &map) {
296 if (_local_potential) {
298 _local_potential = false;
304 /// \name Execution Control
305 /// The simplest way to execute the algorithm is to call the run()
308 /// If you only need the flow that is the union of the found
309 /// arc-disjoint paths, you may call init() and findFlow().
313 /// \brief Run the algorithm.
315 /// This function runs the algorithm.
317 /// \param s The source node.
318 /// \param t The target node.
319 /// \param k The number of paths to be found.
321 /// \return \c k if there are at least \c k arc-disjoint paths from
322 /// \c s to \c t in the digraph. Otherwise it returns the number of
323 /// arc-disjoint paths found.
325 /// \note Apart from the return value, <tt>s.run(s, t, k)</tt> is
326 /// just a shortcut of the following code.
329 /// s.findFlow(t, k);
332 int run(const Node& s, const Node& t, int k = 2) {
339 /// \brief Initialize the algorithm.
341 /// This function initializes the algorithm.
343 /// \param s The source node.
344 void init(const Node& s) {
349 _flow = new FlowMap(_graph);
353 _potential = new PotentialMap(_graph);
354 _local_potential = true;
356 for (ArcIt e(_graph); e != INVALID; ++e) (*_flow)[e] = 0;
357 for (NodeIt n(_graph); n != INVALID; ++n) (*_potential)[n] = 0;
360 /// \brief Execute the algorithm to find an optimal flow.
362 /// This function executes the successive shortest path algorithm to
363 /// find a minimum cost flow, which is the union of \c k (or less)
364 /// arc-disjoint paths.
366 /// \param t The target node.
367 /// \param k The number of paths to be found.
369 /// \return \c k if there are at least \c k arc-disjoint paths from
370 /// the source node to the given node \c t in the digraph.
371 /// Otherwise it returns the number of arc-disjoint paths found.
373 /// \pre \ref init() must be called before using this function.
374 int findFlow(const Node& t, int k = 2) {
377 new ResidualDijkstra( _graph, *_flow, _length, *_potential, _pred,
380 // Find shortest paths
382 while (_path_num < k) {
384 if (!_dijkstra->run()) break;
387 // Set the flow along the found shortest path
390 while ((e = _pred[u]) != INVALID) {
391 if (u == _graph.target(e)) {
393 u = _graph.source(e);
396 u = _graph.target(e);
403 /// \brief Compute the paths from the flow.
405 /// This function computes the paths from the found minimum cost flow,
406 /// which is the union of some arc-disjoint paths.
408 /// \pre \ref init() and \ref findFlow() must be called before using
411 FlowMap res_flow(_graph);
412 for(ArcIt a(_graph); a != INVALID; ++a) res_flow[a] = (*_flow)[a];
415 paths.resize(_path_num);
416 for (int i = 0; i < _path_num; ++i) {
418 while (n != _target) {
419 OutArcIt e(_graph, n);
420 for ( ; res_flow[e] == 0; ++e) ;
421 n = _graph.target(e);
430 /// \name Query Functions
431 /// The results of the algorithm can be obtained using these
433 /// \n The algorithm should be executed before using them.
437 /// \brief Return the total length of the found paths.
439 /// This function returns the total length of the found paths, i.e.
440 /// the total cost of the found flow.
441 /// The complexity of the function is O(e).
443 /// \pre \ref run() or \ref findFlow() must be called before using
445 Length totalLength() const {
447 for (ArcIt e(_graph); e != INVALID; ++e)
448 c += (*_flow)[e] * _length[e];
452 /// \brief Return the flow value on the given arc.
454 /// This function returns the flow value on the given arc.
455 /// It is \c 1 if the arc is involved in one of the found arc-disjoint
456 /// paths, otherwise it is \c 0.
458 /// \pre \ref run() or \ref findFlow() must be called before using
460 int flow(const Arc& arc) const {
461 return (*_flow)[arc];
464 /// \brief Return a const reference to an arc map storing the
467 /// This function returns a const reference to an arc map storing
468 /// the flow that is the union of the found arc-disjoint paths.
470 /// \pre \ref run() or \ref findFlow() must be called before using
472 const FlowMap& flowMap() const {
476 /// \brief Return the potential of the given node.
478 /// This function returns the potential of the given node.
479 /// The node potentials provide the dual solution of the
480 /// underlying \ref min_cost_flow "minimum cost flow problem".
482 /// \pre \ref run() or \ref findFlow() must be called before using
484 Length potential(const Node& node) const {
485 return (*_potential)[node];
488 /// \brief Return a const reference to a node map storing the
489 /// found potentials (the dual solution).
491 /// This function returns a const reference to a node map storing
492 /// the found potentials that provide the dual solution of the
493 /// underlying \ref min_cost_flow "minimum cost flow problem".
495 /// \pre \ref run() or \ref findFlow() must be called before using
497 const PotentialMap& potentialMap() const {
501 /// \brief Return the number of the found paths.
503 /// This function returns the number of the found paths.
505 /// \pre \ref run() or \ref findFlow() must be called before using
507 int pathNum() const {
511 /// \brief Return a const reference to the specified path.
513 /// This function returns a const reference to the specified path.
515 /// \param i The function returns the <tt>i</tt>-th path.
516 /// \c i must be between \c 0 and <tt>%pathNum()-1</tt>.
518 /// \pre \ref run() or \ref findPaths() must be called before using
520 const Path& path(int i) const {
532 #endif //LEMON_SUURBALLE_H