Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

There are many common variations of the maximum flow problem. Here are four of them.

(a) There are many sources and many sinks, and we wish to maximize the total flow from all sources to all sinks.

(b) Each vertex also has a capacity on the maximum flow that can enter it.

(c) Each edge has not only a capacity, but also a lower bound on the flow it must carry.

(d) The outgoing flow from each node u is not the same as the incoming flow, but is smaller by a factor of (1-U), whererole="math" localid="1659789093525" u is a loss coefficient associated with node u.

Each of these can be solved efficiently. Show this by reducing (a) and (b) to the original max-flow problem, and reducing (c) and (d) to linear programming.

Short Answer

Expert verified

(a) and (b) can be reduced to original max-flow. Also, (c) and (d) will be reduced to linear programming.

Step by step solution

01

Step-1:Solve the variation of maximum flow in subpart (a)

(a)

Consider that, GV,E is a graph where V and E are set of vertices and edges respectively of graph G.S is Source nose or starting node. T is Terminating or sink node. I is Internal nodes which not include S or T.

The reduced graph from multi-source, multi-sink flow to single-source, single-sink flow will be G'V',E'.

Here, V'=s,t+VandE'=s,a,laS+E+b,t,lbT.

Therefore, the given variation can be solved for Maximum flow s-t on graph G'.

02

Step-2:Solve the variation of maximum flow in subpart (b)

(b)

Let there be a vertex vV and Cv be the capacity(weight) of the vertex v.

Reduce from node-capacity maximum flow to simple max flow will be:

Consider, G'V',E'withV'=ainaV+aoutaVandE'=ain,aout,CaE+aout,Bin,Ca,ba,bE,

Therefore, The given variation can be solved for maximum flow on sin- tout graph G'.

03

Step-3:Solve the variation of maximum flow in subpart (c)

(c)

Consider that i:Ne, be the bijective mapping(means every element has being matched) between the edge of the graph and set of natural numbers. Ci,Capacity of edge i, Li, lower bound of i, and F, Flow along the edge i .

Maximize the sum of fi , i.e.,

Maximize:ies,vfi

Constraints:

fiCifor alliE (Capacities)

fiLifor alliE (Lower Bounds)

iintovfi-joutofvfjfor allvV-s,t (Conservation)

Therefore, The given variation can be solved for maximum flow.

04

Step-4: Solve the variation of maximum flow in subpart (d)

(d)

Consider that, ev be the loss coefficient along each of the node, such thatout-flow=1-evinflow(v) for all internal nodes l.

Maximize the sum of all values of fi

Maximize:is,vfi

Constraints:

localid="1659791095962" fiCifor alliE (Capacities)

iintov1-eifi-joutofvfjfor allvV-s,t (Lossy Conservation).

Therefore, The given variation can be solved for maximum flow.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Consider the following network (the numbers are edge capacities).

(a)Find the maximum flow fand a minimum cut.

(b)Draw the residual graphGf (along with its edge capacities). In this residual network, mark the vertices reachable fromS and the vertices from whichT is reachable.

(c)An edge of a network is called a bottleneck edge if increasing its capacity results in an increase in the maximum flow. List all bottleneck edges in the above network.

(d)Give a very simple example (containing at most four nodes) of a network which has no bottleneck edges.

(e)Give an efficient algorithm to identify all bottleneck edges in a network.

A quadratic programming problem seeks to maximize a quadratic objective function (with terms like 3x12or5x1x2) subject to a set of linear constraints. Give an example of a quadratic program in two variables x1, x2 such that the feasible region is nonempty and bounded, and yet none of the vertices of this region optimize the (quadratic) objective.

For the following network, with edge capacities as shown, find the maximum flow from S to T, along with a matching cut.

Write the dual to the following linear program.

maxx+y2x+y3x+3y5x,y0

Find the optimal solutions to both primal and dual LPs

A vertex cover of an undirected graph G = (V,E) is a subset of the vertices which touches every edge—that is, a subset SVsuch that for each edge {U,V}E, one or both of u, v are in S. Show that the problem of finding the minimum vertex cover in a bipartite graph reduces to maximum flow. (Hint: Can you relate this problem to the minimum cut in an appropriate network?)

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free