最大流Dinic
不断用BFS构造分层网络,用DFS增广。中途用取指的cur优化DFS。
Dinic封装模板:
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <queue>
using namespace std;
typedef long long L;
const int maxn = + ;
const int maxm = + ;
const int INF = -1u >> ;
int fch[maxn], n, m;
L ans = ;
bool vis[maxn];
struct Tedge{
int from, to, cap, flow, next;
}adj[maxm];
struct Dinic{
int S, T, n, ms;
int d[maxn], cur[maxn], fch[maxn];
void init(int n){
this -> n = n;
memset(fch, -, sizeof(fch));
ms = ;
return ;
}
void AddEdge(int u, int v, int c){
adj[ms] = (Tedge){u, v, c, , fch[u]};
fch[u] = ms ++;
adj[ms] = (Tedge){v, u, , , fch[v]};
fch[v] = ms ++;
return ;
}
bool BFS(){
memset(vis, , sizeof(vis));
queue<int> Q;
Q.push(S); vis[S] = true; d[S] = ;
while(!Q.empty()){
int x = Q.front(); Q.pop();
for(int i = fch[x]; i != -; i = adj[i].next){
Tedge& e = adj[i];
if(!vis[e.to] && e.cap > e.flow){
vis[e.to] = true;
d[e.to] = d[x] + ;
Q.push(e.to);
}
}
}
return vis[T];
}
int DFS(int x, int a){
if(x == T || !a) return a;
int flow = , f;
for(int& i = cur[x]; i != -; i = adj[i].next){
Tedge& e = adj[i];
if(d[e.to] == d[x] + && (f = DFS(e.to, min(a, e.cap - e.flow))) > ){
flow += f;
a -= f;
e.flow += f;
adj[i ^ ].flow -= f;
if(!a) break;
}
}
return flow;
}
L Max_Flow(int S, int T){
this -> S = S;
this -> T = T;
L flow = ;
while(BFS()){
for(int i = ; i < n; i ++) cur[i] = fch[i];
flow += DFS(S, INF);
}
return flow;
}
}sol;
void read(int &x){
x = ; int sig = ; char ch = getchar();
while(!isdigit(ch)) { if(ch == '-') sig = -; ch = getchar(); }
while(isdigit(ch)) x = * x + ch - '', ch = getchar();
x *= sig; return ;
}
void init(){
read(n); read(m);
sol.init(n);
int u, v, w;
for(int i = ; i < m; i++){
read(u); read(v); read(w);
sol.AddEdge(u, v, w);
}
return ;
}
void work(){
ans = sol.Max_Flow(, n);
return ;
}
void print(){
printf("%lld\n", ans);
return ;
}
int main(){
init();
work();
print();
return ;
}
最大流Dinic的更多相关文章
- 网络流之最大流Dinic算法模版
/* 网络流之最大流Dinic算法模版 */ #include <cstring> #include <cstdio> #include <queue> using ...
- poj-1459-最大流dinic+链式前向星-isap+bfs+stack
title: poj-1459-最大流dinic+链式前向星-isap+bfs+stack date: 2018-11-22 20:57:54 tags: acm 刷题 categories: ACM ...
- 网络流之最大流Dinic --- poj 1459
题目链接 Description A power network consists of nodes (power stations, consumers and dispatchers) conne ...
- 网络最大流Dinic
1.什么是网络最大流 形象的来说,网络最大流其实就是这样一个生活化的问题:现在有一个由许多水管组成的水流系统,每一根管道都有自己的最大通过水流限制(流量),超过这个限制水管会爆(你麻麻就会来找你喝茶q ...
- HDU 3572 Task Schedule(拆点+最大流dinic)
Task Schedule Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) To ...
- 学习笔记 --- 最大流Dinic算法
为与机房各位神犇同步,学习下网络流,百度一下发现竟然那么多做法,最后在两种算法中抉择,分别是Dinic和ISAP算法,问过 CA爷后得知其实效率上无异,所以决定跟随Charge的步伐学习Dinic,所 ...
- Power Network(网络流最大流 & dinic算法 + 优化)
Power Network Time Limit: 2000MS Memory Limit: 32768K Total Submissions: 24019 Accepted: 12540 D ...
- ZOJ-2364 Data Transmission 分层图阻塞流 Dinic+贪心预流
题意:给定一个分层图,即只能够在相邻层次之间流动,给定了各个顶点的层次.要求输出一个阻塞流. 分析:该题直接Dinic求最大流TLE了,网上说采用Isap也TLE,而最大流中的最高标号预流推进(HLP ...
- POJ2112_Optimal Milking(网洛流最大流Dinic+最短路Flody+二分)
解题报告 农场有k个挤奶机和c头牛,每头牛到每一台挤奶机距离不一样,每台挤奶机每天最多挤m头牛的奶. 寻找一个方案,安排每头牛到某一挤奶机挤奶,使得c头牛须要走的全部路程中的最大路程的最小值. 要使每 ...
- 最大流dinic模板
循环版,点的编号从0开始: ; ; const int INF = 0x3f3f3f3f; struct Edge { int to, next, cap, flow; }edge[MAXM]; in ...
随机推荐
- java 获取黑屏信息保存在list中,截取字符执行
ArrayList<String> list1 = new ArrayList<String>(); Process p = Runtime.getRuntime().exec ...
- 一个站点的诞生06-- ORM
站点上的数据,存在数据库里. 一般用Mysql,也实用sqlite,Postgre.操作数据库要会SQL语言,这个有点麻烦,经常须要查手冊. 此外.每家数据库在实现SQL语言的时候,经常会加料,添加一 ...
- Quarts SimpleTrigger going to BLOCKED state after few repeat intervals--stackoverflow
question: I am using SimpleTrigger to schedule a job which is supposed to run indefinitely (repeat c ...
- (总结)Nginx配置文件nginx.conf中文详解 <转>
转自 http://www.ha97.com/5194.html #定义Nginx运行的用户和用户组user www www; #nginx进程数,建议设置为等于CPU总核心数.worker_proc ...
- Python之路,Day13-----暂无正在更新中
Python之路,Day13-----暂无正在更新中
- html02表格的使用
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...
- codevs 1047 邮票面值设计
/* 开始没啥好的思路 暴力吧 T的太严重 加了k>n的特判 结果没数据…..然后又暴力生成了几组答案 打表 然而有没有数据 华丽的爆零了 正解 回溯+DP 回溯生成k数组 然后DP找最优解更新 ...
- RESTful Web Services简单介绍
近几年,RESTful Web Services渐渐开始流行,大量用于解决异构系统间的通信问题.很多网站和应用提供的API,都是基于RESTful风格的Web Services,比较著名的包括Twit ...
- Asp.Net中的session配置
一.InProc模式(缺省模式) <sessionState mode="InProc" timeout="20"></sessionStat ...
- asp.net中Page.ClientScript.RegisterStartupScript用法小结(转)
//ASP.NET后台页面跳转 Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "<scri ...