After max flow, build the residual graph. Run BFS from to find all reachable vertices . All other vertices are in . The reachability test identifies which side of the cut each vertex is on. For each edge in the original graph, if and , include it in the minimum cut.
These are the roads to block. Count these edges to verify they match the max flow value. If they do not match, you have made an implementation error.