摘要: 最大流View Code #include <iostream>#include <cstdlib>#include <cstring>#include <cstdio>using namespace std;#define maxn 105#define N maxn * 4#define E N * N * 2#define inf 0x3f3f3f3fstruct edge{ int x, y, nxt; int c;} bf[E];int ne, head[N], cur[N], ps[N], dep[N];int n, f, d;voi 阅读全文
posted @ 2011-09-17 20:55 undefined2024 阅读(476) 评论(0) 推荐(0)