Question

In: Computer Science

Assume that in addition to having capacities for edges we have capacities for vertices, meaning that...

Assume that in addition to having capacities for edges we have capacities for vertices, meaning that the incoming flow to a vertex cannot be more that its capacity. Describe an efficient algorithm to solve the max-flow problem in such a network.

Solutions

Expert Solution

Hey! here is my updated answer please check it and change your.... rating please.....i give my best for this answer please change......thanks for the comment.

The Maximum Flow Problem with vertex capacity :-

  • the maximum flow problem is the one in which, in addition to having a capacity c(u, v) for every edge, we also have a capacity c(u) for every vertex, and a flow f(·, ·) is feasible only if, in addition to the conservation constraints and the edge capacity constraints, it also satisfies the vertex capacity constraints.
  • It is easy to see that the problem can be reduced to the standard maximum flow problem, by splitting every vertex v into two vertices vin and vout, adding one edge (vin, vout) of capacity c(v), and then converting every edge (u, v) to an edge (u, vin) and every edge (v, w) to an edge (vout, w). It is easy to show that solving the (standard) maximum flow problem on the new network is equivalent to solving the maximum flow with vertex capacity constraints in the original network.

transforming the initial graph into a graph which has no capacity constraint on nodes by adding self loops (adding self-loops to each node and finding paths which includes this self-loops for each node on the path) or adding virtual nodes and edges whose weights supersede the initial node-capacity constraints)

There's a simple reduction from the max-flow problem with node capacities to a regular max-flow problem:

  • For every vertex v in your graph, replace it with two vertices v_in and v_out. Every incoming edge to v should point to v_in and every outgoing edge from v should point from v_out. Then create one additional edge from v_in to v_out with capacity c_v, the capacity of vertex v.

So We run Ford-Fulkerson Algorithm on the transformed graph.


Ford-Fulkerson Algorithm for Maximum Flow Problem

  • Ford-Fulkerson algorithm is a greedy approach for calculating the maximum possible flow in a network or a graph.
  • A term, flow network, is used to describe a network of vertices and edges with a source (S) and a sink (T). Each vertex, except S and T, can receive and send an equal amount of stuff through it. S can only send and T can only receive stuff.
  • it is an efficient algorithm to solve the max-flow problem in such a network.
  • The Ford-Fulkerson algorithm solves the problem of finding a maximum flow for a given network.
  • The Ford-Fulkerson method is iterative. We start with f(u, v) = 0 for all u,v V, giving an initial flow of value 0. At each iteration, we increase the flow value by finding an "augmenting path," which we can think of simply as a path from the source s to the sink t along which we can push more flow, and then augmenting the flow along this path. We repeat this process until no augmenting path can be found.


Given a graph which represents a flow network where every edge has a capacity. Also given two vertices source ‘s’ and sink ‘t’ in the graph, find the maximum possible flow from s to t with following constraints:
a) Flow on an edge doesn’t exceed the given capacity of the edge.

b) Incoming flow is equal to outgoing flow for every vertex except s and t.


For example, consider the following graph .

The maximum possible flow in the above graph is 23.

Ford-Fulkerson Algorithm
The following is simple idea of Ford-Fulkerson algorithm:
1) Start with initial flow as 0.
2) While there is an augmenting path from source to sink.
Add this path-flow to flow.
3) Return flow
.

Time Complexity: Time complexity of the above algorithm is O(max_flow * E). We run a loop while there is an augmenting path. In the worst case, we may add 1 unit flow in every iteration. Therefore the time complexity becomes O(max_flow * E).

Terminologies Used

  • Augmenting Path :- It is the path available in a flow network.
  • Residual Graph:- It represents the flow network that has additional possible flow.
  • Residual Capacity:- It is the capacity of the edge after subtracting the flow from the maximum capacity.
  • To implement the above Ford-Fulkerson Algorithm ,first to define the concept of Residual Graph which is needed for understanding the implementation.
  • Residual Graph of a flow network is a graph which indicates additional possible flow. If there is a path from source to sink in residual graph, then it is possible to add flow. Every edge of a residual graph has a value called residual capacity which is equal to original capacity of the edge minus current flow. Residual capacity is basically the current capacity of the edge.


EXAMPLE:_


thanksssss.................


Related Solutions

Is it possible for a planar graph to have 6 vertices, 10 edges and 5 faces?...
Is it possible for a planar graph to have 6 vertices, 10 edges and 5 faces? Explain.
Consider an undirected graph G that has n distinct vertices. Assume n≥3. How many distinct edges...
Consider an undirected graph G that has n distinct vertices. Assume n≥3. How many distinct edges will there be in any circuit for G that contains all the vertices in G? What is the maximum degree that any vertex in G can have? What is the maximum number of distinct edges G can have? What is the maximum number of distinct edges that G can have if G is disconnected?
Prove a connected simple graph G with 16 vertices and 117 edges is not Eulerian.
Prove a connected simple graph G with 16 vertices and 117 edges is not Eulerian.
Consider a network with N vertices and M edges. A. If N=2481 and M=2481. Find the...
Consider a network with N vertices and M edges. A. If N=2481 and M=2481. Find the number of circuits in the network.
Consider a grid with vertices from (0,0) to (20,20), in which edges can only be traversed...
Consider a grid with vertices from (0,0) to (20,20), in which edges can only be traversed up or right. Think of a street grid with intersections labelled by pairs of integers, and all one-way streets. How many paths, going only up and right, are there in the grid which do not pass through either forbidden intersection, if: (1) There are forbidden nodes at grid points (12,7) and (7,12)? (2) There are forbidden nodes at grid points (6,6) and (13,13)?
Given an undirected graph G = (V,E), consisting of n vertices and m edges, with each...
Given an undirected graph G = (V,E), consisting of n vertices and m edges, with each edge labeled from the set {0,1}. Describe and analyze the worst-case time complexity of an efficient algorithm to find any cycle consisting of edges whose labels alternate 0,1.
If graph G has n edges and k component and m vertices, so m ≥ n-k....
If graph G has n edges and k component and m vertices, so m ≥ n-k. Prove it!
You are given a directed graph G(V,E) with n vertices and m edges. Let S be...
You are given a directed graph G(V,E) with n vertices and m edges. Let S be the subset of vertices in G that are able to reach some cycle in G. Design an O(n + m) time algorithm to compute the set S. You can assume that G is given to you in the adjacency-list representation.
If graph g has n vertices and k component and m edges, so m ≥ n-k....
If graph g has n vertices and k component and m edges, so m ≥ n-k. Prove it ! Thank you...
Consider the parallel planes of infinite extent normal to the page having opposite edges. The planes...
Consider the parallel planes of infinite extent normal to the page having opposite edges. The planes are in the environment of Tenv = 300 K as shown Using the appropriate view factor relations and the result for the opposing parallel planes, develop an expression for the view factor, F1?2 Using the cross-string technique to determine the view factor, F1?2 Calculate temperature Tl
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT