bzoj1834: [ZJOI2010]network 網路擴容(最小費用最大流)
題目傳送門
哇神題。。
解法:
好像又加深了對費用流的理解。
看到這道題就是各種不會啊。
第一問很好做跑裸的最大流就可以。
第二問的話。
實際上就是在第一問的殘量網路上加流量使得最大流為K。
那每條邊最大的流量就為K咯。然後費用就為話費咯。
跑一遍最小費用最大流就行啦。
程式碼實現:
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<queue>
using namespace std;
struct node {int x,y,c,d,next,other;}a[110000];int len,last[11000];
void ins(int x,int y,int c,int d) {
int k1,k2;
len++;k1=len;
a[len].x=x;a[len].y=y;a[len].c=c;a[len].d=d;
a[len].next=last[x];last[x]=len;
len++;k2=len;
a[len].x=y;a[len].y=x;a[len].c=0;a[len].d=-d;
a[len].next=last[y];last[y]=len;
a[k1].other=k2;a[k2].other=k1;
}
int h[110000],head,tail;
int st,ed,list[110000];
bool bt_h() {
head=1;tail=2;list[1]=st;
memset(h,0,sizeof(h));h[st]=1;
while(head!=tail) {
int x=list[head];
for(int k=last[x];k;k=a[k].next) {
int y=a[k].y;
if(h[y]==0&&a[k].c>0) {
h[y]=h[x]+1;
list[tail++]=y;
}
}
head++;
}
if(h[ed]==0)return false;
return true;
}
int findflow(int x,int f) {
if(x==ed)return f;
int s=0,t;
for(int k=last[x];k;k=a[k].next) {
int y=a[k].y;
if(h[y]==h[x]+1&&a[k].c>0&&s<f) {
t=findflow(y,min(a[k].c,f-s));s+=t;
a[k].c-=t;a[a[k].other].c+=t;
}
}
if(s==0)h[x]=0;
return s;
}
int d[110000],fbian[110000],K;
bool v[110000];
int spfa() {
head=1;tail=2;list[1]=st;
memset(d,63,sizeof(d));d[st]=0;
memset(v,false,sizeof(v));v[st]=true;
while(head!=tail) {
int x=list[head];
for(int k=last[x];k;k=a[k].next) {
int y=a[k].y;
if(a[k].c>0&&d[y]>d[x]+a[k].d) {
d[y]=d[x]+a[k].d;fbian[y]=k;
if(v[y]==false) {
v[y]=true;list[tail++]=y;
if(tail==ed+1)tail=1;
}
}
}
head++;
}
int x=ed,flow=999999999;
while(x!=st) {int k=fbian[x];flow=min(flow,a[k].c);x=a[k].x;}K-=flow;int ret=0;
x=ed;while(x!=st) {int k=fbian[x];a[k].c-=flow;a[a[k].other].c+=flow;x=a[k].x;ret+=a[k].d*flow;}
return ret;
}
struct edge{int x,y,c,d;}e[110000];
int main() {
int n,m;scanf("%d%d%d",&n,&m,&K);
len=0;memset(last,0,sizeof(last));
for(int i=1;i<=m;i++) {
scanf("%d%d%d%d",&e[i].x,&e[i].y,&e[i].c,&e[i].d);
ins(e[i].x,e[i].y,e[i].c,0);
}
int ans=0;st=1;ed=n;
while(bt_h()==true)ans+=findflow(st,999999999);printf("%d ",ans);ans=0;
for(int i=1;i<=m;i++)ins(e[i].x,e[i].y,K,e[i].d);
while(K!=0) ans+=spfa();printf("%d\n",ans);
return 0;
}
相關文章
- 網路中最小費用最大流
- 網路流(最大流,最小割)
- POJ 2195 Going Home 最小費用最大流Go
- POJ 2195 Going Home (最小費用最大流)Go
- 網路流最大流、最小割學習筆記筆記
- 網路流最大流
- POJ 2195-Going Home(KM演算法/最小費用最大流演算法)Go演算法
- 淺談網路最大流
- hdu 4292 網路最大流
- 【模板】網路流最大流
- 內容分發網路(Content Delivery Network,CDN)
- 網路最大流演算法演算法
- 網路最大流 Dinic演算法演算法
- matlab練習程式(最大流/最小割)Matlab
- 偷寶石(最大流轉化最小割)
- 網路流-最小割
- 網際網路內容產業報告:內容付費崛起,優質內容為王產業
- 【網路流】有源匯上下界最大流
- poj1087 網路最大流
- POJ 3308 Paratroopers 最小割、最大流OOP
- Vitalik Buterin:以太坊網路‘即將迎來’分片擴容
- 第5章 區塊鏈擴充套件:擴容、側鏈和閃電網路區塊鏈套件
- 網路隔離的最小配置
- Ford-Fulkerson 標號法求網路最大流
- Graph Neural Network——圖神經網路神經網路
- linux網路問題:Network is unreachableLinux
- 網路流&費用流&二分圖
- [網路流24題] 魔術球問題 (最大流)
- 仿照這個網路公司網站大概費用多少,如果用thinkphp網站PHP
- 美國網際網路大流量網站和社交網路一天資料分佈圖網站
- linux 配置虛擬網路(Dunmy NetworkLinux
- 網路音樂付費下載 誰才是最終受益者?
- ASM 擴容ASM
- [Redis]擴容Redis
- Vector擴容
- lakka擴容
- POJ1273 Drainage Ditches【網路流 最大流】AI
- iNet Network Scanner Mac(網路掃描工具) v2.7.6啟用版Mac