It is an obvious max flow min cut problem. The nasty part of this problems is:
- There might be multiple routes between same warehouses, so the graph might contain multiple edges between two vertices.
- The output requires to print the routes under certain constraints, instead of just asking about the min cut cost.
The idea is:
- Find the max flow first. The cost of the max flow must be min cut.
- Sort all edges in cost descending order. Then iterate through the sorted edges, do two things:
- Remove this edge from the graph temporarily, calculate the maximum flow value. If the diff between the calculated maximum flow value and the original max flow value (the value calculated without removing the edge from the graph) is the capacity of the edge, then this edge must be in the min cut.
- If an edge is in a min cut, remove this edge from the graph, and repeat, until we get all edges.
This code is a simple modification of the Drainage Ditches Problem Solution that fits this problem, however it does not pass all test data because it does not deal with multiple edges connecting same two vertices. Will post another solution soon.
|