摘要: /*很裸的网络流题目,看了两天算导,今天终于A了一道网络流的题目。我的第一道网络流啊。。。^ ^My Code:*/#include <iostream>#include <cstdio>#include <cstring>#include <queue>using namespace std;const int N = 210;const int inf = 0x6fffffff;bool vis[N];int map[N][N];int pre[N];int n, m;int augment() { int v, i, f_min; bool 阅读全文
posted @ 2011-11-12 10:36 AC_Von 阅读(168) 评论(0) 推荐(0) 编辑