Back to the 2024 paper

Module 3: Graph and Tree Algorithms

20247m

Given the flow network below with capacities:

EDGE CAPACITY
S -> A 10
S -> C 10
A -> B 4
A -> C 2
C -> D 9
B -> T 10
D -> B 6
D -> T 10

Answer the following:
(i) Use the Ford-Fulkerson algorithm to find the maximum flow from source (S) to sink (T).
(ii) Show the augmenting paths selected, the bottleneck capacities on each path, and the updated residual capacities after each augmentation.
(iii) Calculate the final maximum flow value.

Similar questions