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

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.

Short Answer

Expert verified

(a)The maximum flowf is11 , and a min-cut is ({S,A,B},{C,D,T}).

(b) The residual graphGf is as follows,

The vertices reachable fromS areA and B. The vertices reachable fromT areC andD .

(c)The bottleneck edges are(A,C) and (B,C).

(d)Simple example of a network that has no bottleneck edges is as follows:

(e) Algorithm to identify bottleneck edges in the network:

Procedure Bottleneck(en,em)

Input: Graph (V,E)

Output: Bottleneck edges if exist

Perform max-flow min-cut in G(V,E)

Find Residual graph role="math" localid="1657972286397" Gf

Letc be the edge capacity of Gf

Ifrole="math" localid="1657972299309" c=0 at en

If both ends have positive residual capacity

Mark as bottleneck edge

Return (en,em)

Step by step solution

01

Explain Maximum flow and Min-cut

Consider the directed graphG=(V,E) with sourceS and sink T.The maximum data must be sent from source to sink without exceeding the capacities of any other edges is the maximum flow. The maximum flow is denoted by role="math" localid="1657972699416" f . Min-cut is the partition of the vertices into two different groups and its capacity is the total capacity of the edges from the two disjoint groups.

02

Find maximum flow fand a minimum cut. 

(a)

Consider the network figure given in the question. The source isS and the sink isT in the graph G(V,E). The maximum flow does not violate the edge capacities; for all the nodes, the amount of flow entering the vertex must equal the amount leaving. The following Figure shows the Maximum flow and the minimum cut of the graph.

The flowing diagram illustrates the steps in finding the maximum flow.

Therefore, the maximum flowf is11 , and a min-cut is({S,A,B},{C,D,T}) .

03

Draw the residual graph and mark the vertices that reach from S and T . 

(b)

The residual graph captures the flow-increasing opportunities in the graph. The residual graph is represented byGf . The residual graph lists the two types of edges with residual capacities and flow.

The residual graphGf of the given network is as follows:

The vertices reachable from SareA andB . The vertices reachable fromT areC andD . The reachable vertices are represented as follows,

Therefore, the residual graph with the vertices reachable from source and sink is obtained.

04

Find the bottleneck edges.

(c)

If the maximum flow capacity increases with the edge’s capacity, then the edge is called the bottleneck edge. Here, maximum flow capacity increases at edges(A,C)and(B,C) .

Hence, the bottleneck edges in the network are(A,C) and (B,C).

05

Example graph with no bottleneck edges.

(d)

The bottleneck edges increase the maximum flow of the network with an increase in their capacity.

The following is the example graph that has no bottleneck edges.

Thus, a network without bottleneck edges is obtained.

06

Algorithm to identify all the bottleneck edges. 

(e)

An efficient algorithm to identify all the bottleneck edges in-network is as follows:

Procedure Bottleneck(en,em)

Input: Graph (V,E)

Output: Bottleneck edges if exist

Perform max-flow min-cut in G(V,E)

Find Residual graph Gf

LetC be the edge capacity of Gf

If c=0at en

If both ends have positive residual capacity

Mark as bottleneck edge

Return(en,em)

The algorithm calculates the graph’s maximum flow and the minimum cut. The residual graph is examined, and the capacity of the edges is checked. If the edge’s capacity is zero, then both the ends of the edges are checked for the positive residual capacity. The resultant edge is not a bottleneck edge.

Therefore, an algorithm to identify all the bottleneck edges is obtained.

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

The Canine Products company offers two dog foods, Frisky Pup and Husky Hound, that are made from a blend of cereal and meat. A package of Frisky Pup requires 1 pound of cereal and 1.5pounds of meat, and sells for \(7. A package of Husky Hound uses 2 pounds of cereal and 1 pound of meat, and sells for \)6. Raw cereal costs\(1per pound and raw meat costs\)2per pound. It also costslocalid="1658981348093" \(1.40to package the Frisky Pup and localid="1658981352345" \)0.60to package the Husky Hound. A total of localid="1658981356694" 240,000pounds of cereal and pounds of meat are available each month. The only production bottleneck is that the factory can only package 110,000bags of Frisky Pup per month. Needless to say, management would like to maximize profit.

(a) Formulate the problem as a linear program in two variables.

(b) Graph the feasible region, give the coordinates of every vertex, and circle the vertex maximizing profit. What is the maximum profit possible?

In a satisfiable system of linear inequalities

a11x1+···+a1nxnb1:am1x1+···+amnxnbm

we describe the inequality as forced-equal if it is satisfied with equality by every solution x = (x1,...,xn)of the system. Equivalently,Piajixibj is not forced-equal if there exists an x that satisfies the whole system and such that Piajixibj.

For example, in

x1+x22-x1-x2-2x11-x20

A cargo plane can carry a maximum weight of 100 tons and a maximum volume of 60 cubic meters. There are three materials to be transported, and the cargo company may choose to carry any amount of each, up to the maximum available limits given below.

  • Material 1 has density 2tons/cubicmeters, maximum available amount 40 cubic meters, and revenue \(1,000 per cubic meter.
  • Material 2 has density 1ton/cubicmeters,maximum available amount 30 cubic meters, and revenue \)1,200 per cubic meter.
  • Material 3 has density 3tons/cubicmeters, maximum available amount 20 cubic meters, and revenue $12,000 per cubic meter.

Write a linear program that optimizes revenue within the constraints.

Direct bipartite matching. We’ve seen how to find a maximum matching in a bipartite graph via reduction to the maximum flow problem. We now develop a direct algorithm.

Let G=(V1V2,E)be a bipartite graph (so each edge has one endpoint in V1and one endpoint in V2), and letMEbe a matching in the graph (that is, a set of edges that don’t touch). A vertex is said to be covered byMif it is the endpoint of one of the edges in M. An alternating path is a path of odd length that starts and ends with a non-covered vertex, and whose edges alternate between Mand E-M.

(a) In the bipartite graph below, a matching Mis shown in bold. Find an alternating path.


(b) Prove that a matchingMis maximal if and only if there does not exist an alternating path with respect to it.

(c) Design an algorithm that finds an alternating path inO(|V|+|E|)time using a variant of breadth-first search.

(d) Give a directO(|V|-|E|)algorithm for finding a maximal matching in a bipartite graph.

Question: A linear program for shortest path. Suppose we want to compute the shortest path from node s to node t in a directed graph with edge lengths le>0.

a) Show that this is equivalent to finding an s - tflow fthat minimizes elefesubject to size (f) = 1. There are no capacity constraints.

b) Write the shortest path problem as a linear program.

c) Show that the dual LP can be written as

role="math" localid="1659250472483" maxxs-xtxu-xvluvforall(u,v)E

d) An interpretation for the dual is given in the box on page 223. Why isn’t our dual LP identical to the one on that page?

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