摘要: EK 算法:邻接矩阵保存模板题hdu3549#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<queue> #include<climits> using namespace std; #define N 16 int capacity[N][N];//容量 int flow[N];//残余流量 int pre[N];//前趋 int n, m; queue< 阅读全文
posted @ 2012-03-02 15:19 枕边梦 阅读(258) 评论(0) 推荐(0) 编辑