poj-1273(最大流)
题解:纯板子题。。。
EK算法
#include<iostream>
#include<algorithm>
#include<cstring>
#include<cstdio>
#include<queue>
#define maxn 205
#define maxx 1e12
#define ll long long
using namespace std;
ll flow[maxn];//流量到达每个顶点的剩余流量;
ll c[maxn][maxn];//残余网络;
ll n,m;
ll pre[maxn];
queue<int>que;
int bfs(int s,int e)
{
memset(pre,-1,sizeof(pre));
while(!que.empty())
que.pop();
pre[s]=0;flow[s]=maxx;que.push(s);
while(!que.empty())
{
int temp=que.front();
que.pop();
if(temp==e)
break;
for(int i=1;i<=n;i++)
{
if(i!=s&&c[temp][i]>0&&pre[i]==-1)
{
pre[i]=temp;
flow[i]=min(c[temp][i],flow[temp]);
que.push(i);
}
}
}
if(pre[e]==-1)
return -1;
else
return flow[e];
}
int maxflow(int s,int e)
{
long long int tempsum=0;
long long int anssum=0;
while((tempsum=bfs(s,e))!=-1)
{
int k=e;
while(k!=s)
{
int last=pre[k];
c[last][k]-=tempsum;
c[k][last]+=tempsum;
k=last;
}
anssum+=tempsum;
} return anssum;
}
int main()
{
int x,y,w;
while(cin>>m>>n)
{
memset(c,0,sizeof(c));
memset(flow,0,sizeof(flow));
for(int i=1;i<=m;i++)
{
cin>>x>>y>>w;
c[x][y]+=w;
}
long long int ans=maxflow(1,n);
cout<<ans<<endl;
}
return 0;
}
dinic算法
#include<iostream>
#include<algorithm>
#include<cstring>
#include<queue>
#include<cstdio>
#define maxn 5005
#define ll long long
using namespace std;
struct Edge
{
ll next;
ll to;
ll w;
}edge[maxn];
ll head[maxn];
ll n,m;
ll cnt,s,e;
ll x,y,w;
ll depth[maxn];
void add(ll u,ll v,ll w)
{
edge[cnt].next=head[u];edge[cnt].to=v;
edge[cnt].w=w;head[u]=cnt++;
edge[cnt].next=head[v];edge[cnt].to=u;
edge[cnt].w=0;head[v]=cnt++;
}
bool bfs()
{
memset(depth,0,sizeof(depth));
queue<ll>que;
que.push(s);
depth[s]=1;
while(!que.empty())
{
ll u=que.front();que.pop();
for(ll i=head[u];i!=-1;i=edge[i].next)
{
ll v=edge[i].to;
if(edge[i].w<=0||depth[v])
continue;
depth[v]=depth[u]+1;
que.push(v);
}
}
return depth[e];
}
ll dfs(ll u,ll maxflow)
{
if(u==e)
return maxflow;
ll add=0;
for(ll i=head[u];i!=-1&&add<maxflow;i=edge[i].next)
{
ll v=edge[i].to;
if(depth[v]!=depth[u]+1)
continue;
if(edge[i].w<=0)
continue;
ll tempflow=dfs(v,min(maxflow-add,edge[i].w));
edge[i].w-=tempflow;
edge[i^1].w+=tempflow;
add+=tempflow;
}
return add;
}
ll dinic()
{
ll ans=0;
while(bfs())
{
ans+=dfs(s,1e12);
}
return ans;
}
int main()
{
while(cin>>m>>n)
{
s=1;e=n;
memset(head,-1,sizeof(head));
cnt=0;
for(int i=1;i<=m;i++)
{
cin>>x>>y>>w;
add(x,y,w);
}
ll a=dinic();
cout<<a<<endl;
}
}
poj-1273(最大流)的更多相关文章
- UVA 820 --- POJ 1273 最大流
找了好久这两个的区别...UVA820 WA了 好多次.不过以后就做模板了,可以求任意两点之间的最大流. UVA 是无向图,因此可能有重边,POJ 1273是有向图,而且是单源点求最大流,因此改模板的 ...
- poj 1273 最大流
题目链接:http://poj.org/problem?id=1273 a.EK算法:(Edmond-Karp): 用BFS不断找增广路径,当找不到增广路径时当前流量即为最大流. b.dinic算法: ...
- [转载 ]POJ 1273 最大流模板
转载 百度文库花了5分下的 不过确实是自己需要的东西经典的最大流题POJ1273 ——其他练习题 POJ3436 . 题意描述: 现在有m个池塘(从1到m开始编号,1为源点,m为汇点),及n条水渠,给 ...
- poj 1273最大流dinic算法模板
#include<stdio.h> #include<string.h> #define N 300 #define inf 0x7fffffff #include<qu ...
- poj 1273 最大流入门
明天再拍一遍 #include <iostream> #include <queue> using namespace std; ; const int INF = 0x7FF ...
- POJ 1273 Drainage Ditches(网络流dinic算法模板)
POJ 1273给出M条边,N个点,求源点1到汇点N的最大流量. 本文主要就是附上dinic的模板,供以后参考. #include <iostream> #include <stdi ...
- poj 3281 最大流+建图
很巧妙的思想 转自:http://www.cnblogs.com/kuangbin/archive/2012/08/21/2649850.html 本题能够想到用最大流做,那真的是太绝了.建模的方法很 ...
- poj 1273 Drainage Ditches 最大流入门题
题目链接:http://poj.org/problem?id=1273 Every time it rains on Farmer John's fields, a pond forms over B ...
- poj 1273 Drainage Ditches(最大流)
http://poj.org/problem?id=1273 Drainage Ditches Time Limit: 1000MS Memory Limit: 10000K Total Subm ...
- POJ 1273 - Drainage Ditches - [最大流模板题] - [EK算法模板][Dinic算法模板 - 邻接表型]
题目链接:http://poj.org/problem?id=1273 Time Limit: 1000MS Memory Limit: 10000K Description Every time i ...
随机推荐
- Java线程安全与锁优化
线程安全的严谨定义: 当多个线程访问一个对象时,如果不用考虑这些线程在运行时环境下的调度和交题执行,也不需要进行额外的同步,或者调用方法进行其他任何操作,调用这个对象的行为都可以或者正确的结果,那么这 ...
- HandlerThread解析
HandlerThread是一种具有消息循环的线程.HandlerThread可以接收消息并处理消息,并执行一些耗时操作,这样UI线程就可以把一些耗时的操作命令发送给HandlerThread,由该线 ...
- 从一个例子入门Mysql储存过程
例子 -- 秒杀执行存储过程 DELIMITER $$ -- 将分隔符; 转换为 $$ -- 定义存储过程 -- 参数: in 输入参数; out 输出参数 -- row_count():返回上一条修 ...
- C# WPF仿360安全卫士11
首先上效果图: 这是我的第一篇随笔,最近因为写一个播放器,开始学习WPF相关技术,随着不断入坑,播放器倒是做出来了,掉坑里了... 本着闲着也是闲着的精神,拿360开刀了: 主界面主要使用DMSkin ...
- 并发连接MySQL
先吐槽一下libmysqlclientAPI的设计, 多个线程同时去connect居然会core掉. 后来Google了一番, 才发现mysql_real_connect不是线程安全的, 需要一些额外 ...
- IIS 日志导入到数据库的方法
使用微软Log Parser 执行 logparser "SELECT * FROM d:\iislogs\u_ex18071705.log TO myTableName" -o: ...
- Cat8 八类网线是什么?与Cat5、Cat6、Cat7网线的区别?
若您身处于网络通信行业,相信您应该了解一些以太网线缆,比如说超五类网线.六类网线和七类网线等等.但是您知道Cat8 八类网线 是什么吗?它与五类网线.六类/超六类网线及七类/超七类网线有着怎么样的区别 ...
- Stack Sorting CodeForces - 911E (思维+单调栈思想)
Let's suppose you have an array a, a stack s (initially empty) and an array b (also initially empty) ...
- atcoderI - Coins ( 概率DP)
I - Coins Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement Let NN b ...
- Pair Project
以前只是一个人完成一个项目,不论什么都是,现在突然要两个人一起来写, 听上去挺稀奇的,也挺简单的,可惜了就是“听上去”而已.我认为这也是一种技术啊~ 我跟我的搭档研究了好久好久,选择了好久,然后也选了 ...