POJ1459 Power Network(网络最大流)
| Time Limit: 2000MS | Memory Limit: 32768K | |
| Total Submissions: 27229 | Accepted: 14151 |
Description

An example is in figure 1. The label x/y of power station u shows that p(u)=x and pmax(u)=y. The label x/y of consumer u shows that c(u)=x and cmax(u)=y. The label x/y of power transport line (u,v) shows that l(u,v)=x and lmax(u,v)=y.
The power consumed is Con=6. Notice that there are other possible
states of the network but the value of Con cannot exceed 6.
Input
are several data sets in the input. Each data set encodes a power
network. It starts with four integers: 0 <= n <= 100 (nodes), 0
<= np <= n (power stations), 0 <= nc <= n (consumers), and 0
<= m <= n^2 (power transport lines). Follow m data triplets
(u,v)z, where u and v are node identifiers (starting from 0) and 0 <=
z <= 1000 is the value of lmax(u,v). Follow np doublets (u)z, where u is the identifier of a power station and 0 <= z <= 10000 is the value of pmax(u).
The data set ends with nc doublets (u)z, where u is the identifier of a
consumer and 0 <= z <= 10000 is the value of cmax(u).
All input numbers are integers. Except the (u,v)z triplets and the (u)z
doublets, which do not contain white spaces, white spaces can occur
freely in input. Input data terminate with an end of file and are
correct.
Output
each data set from the input, the program prints on the standard output
the maximum amount of power that can be consumed in the corresponding
network. Each result has an integral value and is printed from the
beginning of a separate line.
Sample Input
2 1 1 2 (0,1)20 (1,0)10 (0)15 (1)20
7 2 3 13 (0,0)1 (0,1)2 (0,2)5 (1,0)1 (1,2)8 (2,3)1 (2,4)7
(3,5)2 (3,6)5 (4,2)7 (4,3)5 (4,5)1 (6,0)5
(0)5 (1)2 (3)2 (4)1 (5)4
Sample Output
15
6
Hint
/*
EdmondsKarp
Memory 320K
Time 1282MS
和没过没什么区别
*/
#include <iostream>
#include <queue>
using namespace std;
#define min(a,b) (a<b?a:b)
#define MAXV 105
#define MAXINT INT_MAX typedef struct{
int flow; //流量
int capacity; //最大容量值
}maps; maps map[MAXV][MAXV]; int vertime; //顶点总数
int nedges; //边的总数
int power_stations; //发电站总数
int consumers; //消费者总数
int maxflow; //最大流
int sp,fp; //标记源点与汇点 int parent[MAXV]; //用于bfs寻找路径 int bfs(int start,int end){
int a[MAXV],i,v;
queue <int>q; memset(a,,sizeof(a));
memset(parent,-,sizeof(parent)); q.push(start);
a[start]=MAXINT;
while(!q.empty()){
v=q.front();q.pop();
for(i=;i<=vertime;i++){
if(!a[i] && map[v][i].capacity>map[v][i].flow){
q.push(i);
parent[i]=v;
a[i]=min(a[v],map[v][i].capacity-map[v][i].flow);
}
}
if(v==end) break;
}
return a[end];
} void EdmondsKarp(){
int i,tmp;
maxflow=;
while(tmp=bfs(sp,fp)){
for(i=fp;i!=sp;i=parent[i]){
map[i][parent[i]].flow-=tmp; //更新反向流
map[parent[i]][i].flow+=tmp; //更新正向流
}
maxflow+=tmp;
}
} int main(){
int i;
int x,y,z;
char ch;
while(scanf("%d%d%d%d", &vertime, &power_stations,&consumers,&nedges)!= EOF){
//Init
memset(map,,sizeof(map)); //Read Gragh
for(i=;i<=nedges;i++){ //设置读图从1开始
cin>>ch>>x>>ch>>y>>ch>>z;
map[x+][y+].capacity=z;
} //Build Gragh
//建立超级源点指向所有的发电站
sp=vertime+;fp=vertime+;vertime+=;
for (i=; i<=power_stations; i++){
cin>>ch>>x>>ch>>y;
map[sp][x+].capacity=y;
} //建立超级汇点,使所有消费者指向它
for (i=; i<=consumers; i++){
cin>>ch>>x>>ch>>y;
map[x+][fp].capacity=y;
} EdmondsKarp();
printf("%d\n",maxflow);
}
return ;
}
EdmondsKarp
/*
dinic
Memory 320K
Time 563MS
*/
#include <iostream>
#include <queue>
using namespace std;
#define min(a,b) (a<b?a:b)
#define MAXV 105
#define MAXINT INT_MAX typedef struct{
int flow; //流量
int capacity; //最大容量值
}maps; maps map[MAXV][MAXV];
int dis[MAXV]; //用于dinic分层 int vertime; //顶点总数
int nedges; //边的总数
int power_stations; //发电站总数
int consumers; //消费者总数
int maxflow; //最大流
int sp,fp; //标记源点与汇点 bool bfs(){
int v,i;
queue <int>q;
memset(dis,,sizeof(dis)); q.push(sp);
dis[sp]=;
while(!q.empty()){
v=q.front();q.pop();
for(i=;i<=vertime;i++)
if(!dis[i] && map[v][i].capacity>map[v][i].flow){
q.push(i);
dis[i]=dis[v]+;
}
if(v==fp) return ;
}
return ;
} int dfs(int cur,int cp){
if(cur==fp) return cp; int tmp=cp,t;
for(int i=;i<=vertime;i++)
if(dis[i]==dis[cur]+ && tmp && map[cur][i].capacity>map[cur][i].flow){
t=dfs(i,min(map[cur][i].capacity-map[cur][i].flow,tmp));
map[cur][i].flow+=t;
map[i][cur].flow-=t;
tmp-=t;
}
return cp-tmp;
} void dinic(){
maxflow=;
while(bfs()) maxflow+=dfs(sp,MAXINT);
} int main(){
int i;
int x,y,z;
char ch;
while(scanf("%d%d%d%d", &vertime, &power_stations,&consumers,&nedges)!= EOF){
//Init
memset(map,,sizeof(map)); //Read Gragh
for(i=;i<=nedges;i++){ //设置读图从1开始
cin>>ch>>x>>ch>>y>>ch>>z;
map[x+][y+].capacity=z;
} //Build Gragh
//建立超级源点指向所有的发电站
sp=vertime+;fp=vertime+;vertime+=;
for (i=; i<=power_stations; i++){
cin>>ch>>x>>ch>>y;
map[sp][x+].capacity=y;
} //建立超级汇点,使所有消费者指向它
for (i=; i<=consumers; i++){
cin>>ch>>x>>ch>>y;
map[x+][fp].capacity=y;
} dinic();
printf("%d\n",maxflow);
}
return ;
}
dinic
/*
sap
Memory 328K
Time 454MS
*/
#include <iostream>
#include <queue>
using namespace std;
#define MAXV 110
#define INF 1<<29
#define min(a,b) (a>b?b:a) int n,c[MAXV][MAXV],r[MAXV][MAXV],source,sink;
int dis[MAXV],maxflow; void bfs(){
int v,i;
queue <int>q;
memset(dis,,sizeof(dis));
q.push(sink);
while(!q.empty()){
v=q.front();q.pop();
for(i=;i<=sink;i++){
if(!dis[i] && c[i][v]>){
dis[i] = dis[v] +;
q.push(i);
}
}
}
} void sap(){
int top=source,pre[MAXV],i,j,low[MAXV]; bfs(); //分层
memset(low,,sizeof(low)); //保存路径的最小流量
while(dis[source]<n){
low[source]=INF;
for(i=;i<=sink;i++){ //找到一条允许弧
if(r[top][i]> && dis[top]==dis[i] +) break;
}
if(i<=sink){ //找到了
low[i]=min(r[top][i],low[top]); //更新最小流量
pre[i]=top;top=i; //记录增广路径
if(top==sink){ //找到一条增广路径更新残量
maxflow += low[sink];
j = top;
while(j != source){
i=pre[j];
r[i][j]-=low[sink];
r[j][i]+=low[sink];
j=i;
}
top=source; //再从头找一条增广路径
memset(low,,sizeof(low));
}
}
else{ //找不到这样一条允许弧更新距离数组
int mindis=INF;
for(j=;j <=sink;j++){
if(r[top][j]> && mindis>dis[j] +)
mindis=dis[j] +;
}
dis[top]=mindis;
if(top!=source) top=pre[top];
}
}
} int main(){
int i,nedges,power_stations,consumers;
int x,y,z;
char ch;
while(scanf("%d%d%d%d", &n, &power_stations,&consumers,&nedges)!= EOF){
//Init
memset(r,,sizeof(r));
memset(c,,sizeof(c));
source=;sink=n+;n+=;maxflow=; //Read Gragh
for(i=;i<=nedges;i++){ //设置读图从1开始
cin>>ch>>x>>ch>>y>>ch>>z;
c[x+][y+]=r[x+][y+]=z;
} //Build Gragh
//建立超级源点指向所有的发电站
for (i=;i<=power_stations;i++){
cin>>ch>>x>>ch>>y;
c[source][x+]=r[source][x+]=y;
} //建立超级汇点,使所有消费者指向它
for (i=;i<=consumers;i++){
cin>>ch>>x>>ch>>y;
c[x+][sink]=r[x+][sink]=y;
}
sap();
printf("%d\n",maxflow);
}
return ;
}
sap
sap+分层+gap优化
Memory 328K
Time 438MS
*/
#include <iostream>
#include <queue>
using namespace std;
#define MAXV 110
#define INF 1<<29
#define min(a,b) (a>b?b:a) int n,c[MAXV][MAXV],r[MAXV][MAXV],source,sink;
int dis[MAXV],maxflow,gap[MAXV]; void bfs(){
int v,i;
queue <int>q;
memset(dis,,sizeof(dis));
memset(gap,,sizeof(gap));
gap[]++;
q.push(sink);
while(!q.empty()){
v=q.front();q.pop();
for(i=;i<=sink;i++){
if(!dis[i] && c[i][v]>){
dis[i] = dis[v] +;
gap[dis[i]]++;
q.push(i);
}
}
}
} void sap(){
int top=source,pre[MAXV],i,j,low[MAXV]; bfs(); //分层
memset(low,,sizeof(low)); //保存路径的最小流量
while(dis[source]<n){
low[source]=INF;
for(i=;i<=sink;i++){ //找到一条允许弧
if(r[top][i]> && dis[top]==dis[i]+ && dis[i]>=) break;
}
if(i<=sink){ //找到了
low[i]=min(r[top][i],low[top]); //更新最小流量
pre[i]=top;top=i; //记录增广路径
if(top==sink){ //找到一条增广路径更新残量
maxflow += low[sink];
j = top;
while(j != source){
i=pre[j];
r[i][j]-=low[sink];
r[j][i]+=low[sink];
j=i;
}
top=source; //再从头找一条增广路径
memset(low,,sizeof(low));
}
}
else{ //找不到这样一条允许弧更新距离数组
int mindis=INF;
for(j=;j <=sink;j++){
if(r[top][j]> && mindis>dis[j] + && dis[j]>=)
mindis=dis[j] +;
}
gap[dis[top]]--;
if (gap[dis[top]] ==) break;
gap[mindis]++;
dis[top]=mindis;
if(top!=source) top=pre[top];
}
}
} int main(){
int i,nedges,power_stations,consumers;
int x,y,z;
char ch;
while(scanf("%d%d%d%d", &n, &power_stations,&consumers,&nedges)!= EOF){
//Init
memset(r,,sizeof(r));
memset(c,,sizeof(c));
source=;sink=n+;n+=;maxflow=; //Read Gragh
for(i=;i<=nedges;i++){ //设置读图从1开始
cin>>ch>>x>>ch>>y>>ch>>z;
c[x+][y+]=r[x+][y+]=z;
} //Build Gragh
//建立超级源点指向所有的发电站
for (i=;i<=power_stations;i++){
cin>>ch>>x>>ch>>y;
c[source][x+]=r[source][x+]=y;
} //建立超级汇点,使所有消费者指向它
for (i=;i<=consumers;i++){
cin>>ch>>x>>ch>>y;
c[x+][sink]=r[x+][sink]=y;
}
sap();
printf("%d\n",maxflow);
}
return ;
}
sap+分层+gap优化
POJ1459 Power Network(网络最大流)的更多相关文章
- POJ 1459 Power Network(网络最大流,dinic算法模板题)
题意:给出n,np,nc,m,n为节点数,np为发电站数,nc为用电厂数,m为边的个数. 接下来给出m个数据(u,v)z,表示w(u,v)允许传输的最大电力为z:np个数据(u)z,表示发电 ...
- POJ1459 Power Network 网络流 最大流
原文链接http://www.cnblogs.com/zhouzhendong/p/8326021.html 题目传送门 - POJ1459 题意概括 多组数据. 对于每一组数据,首先一个数n,表示有 ...
- POJ-1459 Power Network(最大流)
https://vjudge.net/problem/POJ-1459 题解转载自:優YoU http://user.qzone.qq.com/289065406/blog/1299339754 解题 ...
- POJ1459 Power Network —— 最大流
题目链接:https://vjudge.net/problem/POJ-1459 Power Network Time Limit: 2000MS Memory Limit: 32768K Tot ...
- poj1459 Power Network (多源多汇最大流)
Description A power network consists of nodes (power stations, consumers and dispatchers) connected ...
- Power Network (最大流增广路算法模板题)
Time Limit: 2000MS Memory Limit: 32768K Total Submissions: 20754 Accepted: 10872 Description A p ...
- POJ1459 - Power Network
原题链接 题意简述 原题看了好几遍才看懂- 给出一个个点,条边的有向图.个点中有个源点,个汇点,每个源点和汇点都有流出上限和流入上限.求最大流. 题解 建一个真 · 源点和一个真 · 汇点.真 · 源 ...
- POJ 1459 Power Network(网络流 最大流 多起点,多汇点)
Power Network Time Limit: 2000MS Memory Limit: 32768K Total Submissions: 22987 Accepted: 12039 D ...
- poj1087 A Plug for UNIX & poj1459 Power Network (最大流)
读题比做题难系列…… poj1087 输入n,代表插座个数,接下来分别输入n个插座,字母表示.把插座看做最大流源点,连接到一个点做最大源点,流量为1. 输入m,代表电器个数,接下来分别输入m个电器,字 ...
随机推荐
- java static
一. static代表着什么 在Java中并不存在全局变量的概念,但是我们可以通过static来实现一个“伪全局”的概念,在Java中static表示“全局”或者“静态”的意思,用来修饰成员变量和成员 ...
- Python开发入门与实战1-开发环境
1.搭建Python Django开发环境 1.1.Python运行环境安装 Python官网:http://www.python.org/ Python最新源码,二进制文档,新闻资讯等可以在Pyth ...
- Windows下LDAP服务器配置
LDAP即轻量级目录访问协议(Lightweight Directory Access Protocol),基础知识不再赘述,本文主要记录我的配置与安装过程. LDAP for windows下载 o ...
- php练习题:投票
通过连接数据库,对数据库的增删改来实现一个投票的进行与结果的显示: 方法一: 主页面 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Tran ...
- cf--1C
//Accepted 0 KB 60 ms //给出正多变形上的三个点,求正多形的最小面积 //记三个点之间的距离a,b,c; //由余弦定理得cosA //从而可求出sinA,和正多边形所在外接圆的 ...
- memcpy的用法及实现
memcpy函数的功能是从源src所指的内存地址的起始位置开始拷贝n个字节到目标dest所指的内存地址的起始位置中,返回dest所指内存地址的起始位置. #include <string.h&g ...
- postgreSQL环境搭建
一.安装 操作系统:windows7 安装介质:postgresql-9.1.3-1-windows.exe 二.psql控制台简单使用 1打开psql 2根据提示运行help 3列出表命令 三.安装 ...
- 学习笔记:jquery1.9版本后废弃的函数和方法
jQuery1.9+ 废弃的函数和方法 升级Jquery版本遇到的问题 (转载自:http://www.ppblog.cn/jquery1-9live.html 版权归原作者所有) jQuery1. ...
- 最熟悉的陌生人:ListView 中的观察者模式
RecyclerView 得宠之前,ListView 可以说是我们用的最多的组件.之前一直没有好好看看它的源码,知其然不知其所以然. 今天我们来窥一窥 ListView 中的观察者模式. 不熟悉观察者 ...
- 8、网页制作Dreamweaver(jQuery基础:安装、语法)
在<网页制作Dreamweaver(悬浮动态分层导航)>中,运用到了jQuery的技术,轻松实现了菜单的下拉.显示.隐藏的效果,不必再用样式表一点点地修改,省去了很多麻烦,那么jQuery ...