摘要: dinic 算法 时间复杂度 O(n*n*e) 1 struct node{ 2 int u,v,next,c; 3 }edge[maxn<<1]; 4 int head[maxn]; 5 int cnt,dis[maxn],n,m,ans; 6 7 void init(){ 8 memset(he 阅读全文
posted @ 2018-05-21 18:10 Acerkoo 阅读(228) 评论(0) 推荐(0) 编辑