POJ 1273 Drainage Ditches 一般增广路算法,网络流
摘要:
看到Ci最大可以到10 000 000,N<=200,M<=200,我以为用这个算法会超时,据说该算法的复杂度是N*M*C,C为最大流量值。但是显然没超,可能是数据弱神马的,不知道没什么思路说的,就是裸的网络最大流,我的代码和上一个题 pigs(麦克卖猪)的代码基本上相同,下面贴代码:View Code 1 #include <cstdio> 2 #include <cstring> 3 #define MAXN 205 4 #define MAXM 205 5 #define INF 300000000 6 struct Arc 7 { 8 int c,f 阅读全文
posted @ 2013-04-08 20:25 allh123 阅读(179) 评论(0) 推荐(0) 编辑