Ask Question
31 May, 03:29

An edge of a flow network is called critical if decreasing the capacity of this edge results in a decrease in the maximum flow. On input a flow network G, you ran Ford-Fulkerson and computed a maximum flow f.

i. Give an efficient algorithm that finds a critical edge in G.

ii. Give an efficient algorithm that finds every critical edge in G.

+3
Answers (1)
  1. 31 May, 06:07
    0
    Begin find the residual graph of the graph G (V, E) using ford Fulkerson For each edge u, v in the residual graph such that u, v is not in the residual graph and also not in G Apply DFS to see if u has no path to v then return edge (u, v) else nothing end
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “An edge of a flow network is called critical if decreasing the capacity of this edge results in a decrease in the maximum flow. On input a ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers