Network flow is a well-known difficult problem for ACMers. Given a graph, your task is to find out the maximum flow for the weighted directed graph.
For each test case, the first line contains two integers N and M, denoting the number of vertexes and edges in the graph. (2 <= N <= 15, 0 <= M <= 1000)
Next M lines, each line contains three integers X, Y and C, there is an edge from X to Y and the capacity of it is C. (1 <= X, Y <= N, 1 <= C <= 1000)
2 3 2 1 2 1 2 3 1 3 3 1 2 1 2 3 1 1 3 1
Case 1: 1 Case 2: 2
ACM网络流问题解析
本文介绍了一种经典的ACM竞赛题目——网络流问题。针对加权有向图,任务是找出从源点到汇点的最大流量。输入包括顶点数、边数以及每条边的起点、终点和容量;输出则是最大流量。
3165

被折叠的 条评论
为什么被折叠?



