Questions: Maximum Flow: Network Flow Problems and Algorithms

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

In the Ford-Fulkerson method, why is the residual graph's reverse edge essential?

AIt prevents the algorithm from visiting the same node twice
BIt allows the algorithm to undo a previous flow decision and reroute flow more efficiently
CIt records edges that have been fully saturated so they are skipped
DIt doubles the capacity of each edge to handle bidirectional traffic
Question 2 Multiple Choice

After running Ford-Fulkerson to completion, which of the following is guaranteed to be true?

AThe maximum flow equals the total capacity of all edges leaving the source
BThe maximum flow equals the minimum capacity cut separating source from sink
CEvery edge in the network carries flow equal to its capacity
DThe number of augmenting paths found equals the maximum flow value
Question 3 True / False

Edmonds-Karp guarantees polynomial time termination even when Ford-Fulkerson with DFS might not terminate.

TTrue
FFalse
Question 4 True / False

Many combinatorial problems like bipartite matching require their own specialized algorithms and can seldom be reduced to max-flow.

TTrue
FFalse
Question 5 Short Answer

Why is the residual graph the central data structure in maximum flow algorithms, and what role do its reverse edges play?

Think about your answer, then reveal below.