摘要: #include "stdio.h" //poj 1149 最大流#include "string.h"#include "queue"using namespace std;#define N 2250#define INF 0x3fffffffstruct node{ int u,v,w; ... 阅读全文
posted @ 2013-12-04 20:40 ruo_yu 阅读(154) 评论(0) 推荐(0)
摘要: #include "stdio.h" //poj 1459 最大流#include "string.h"#include "queue"using namespace std;#define N 205#define INF 0x3fffffffint n;bool mark;int map[N][... 阅读全文
posted @ 2013-12-04 19:25 ruo_yu 阅读(185) 评论(0) 推荐(0)