bzoj2127: happiness(最小割)
題目傳送門
。。
解法:
跟文理分科有什麼區別。
詳情請見此blog
程式碼實現:
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<queue>
using namespace std;
struct node {int x,y,c,next,other;}a[1100000];int len,last[51000];
void ins(int x,int y,int c) {
int k1,k2;
len++;k1=len;a[len].x=x;a[len].y=y;a[len].c=c;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].next=last[y];last[y]=len;
a[k1].other=k2;a[k2].other=k1;
}
int list[51000],head,tail,h[51000],st,ed;
bool bt_h() {
list[1]=st;head=1;tail=2;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 n,m,map[110][110];const int inf=999999999;
int pt(int x,int y) {return (x-1)*m+y;}
int main() {
//freopen("happiness.in","r",stdin);freopen("happiness.out","w",stdout);
scanf("%d%d",&n,&m);st=n*m*5+1;ed=st+1;int sum=0;len=0;memset(last,0,sizeof(last));
for(int i=1;i<=n;i++)for(int j=1;j<=m;j++) {int x;scanf("%d",&x);sum+=x;ins(st,pt(i,j),x);}
for(int i=1;i<=n;i++)for(int j=1;j<=m;j++) {int x;scanf("%d",&x);sum+=x;ins(pt(i,j),ed,x);}
for(int i=1;i<n;i++)for(int j=1;j<=m;j++) {
int x;scanf("%d",&x);sum+=x;ins(st,pt(i,j)+n*m,x);ins(pt(i,j)+n*m,pt(i+1,j),inf);ins(pt(i,j)+n*m,pt(i,j),inf);
}
for(int i=1;i<n;i++)for(int j=1;j<=m;j++) {
int x;scanf("%d",&x);sum+=x;ins(pt(i,j)+n*m*2,ed,x);ins(pt(i+1,j),pt(i,j)+n*m*2,inf);ins(pt(i,j),pt(i,j)+n*m*2,inf);
}
for(int i=1;i<=n;i++)for(int j=1;j<m;j++) {
int x;scanf("%d",&x);sum+=x;ins(st,pt(i,j)+n*m*3,x);ins(pt(i,j)+n*m*3,pt(i,j+1),inf);ins(pt(i,j)+n*m*3,pt(i,j),inf);
}
for(int i=1;i<=n;i++)for(int j=1;j<m;j++) {
int x;scanf("%d",&x);sum+=x;ins(pt(i,j)+n*m*4,ed,x);ins(pt(i,j+1),pt(i,j)+n*m*4,inf);ins(pt(i,j),pt(i,j)+n*m*4,inf);
}int ans=0;while(bt_h()==true)ans+=findflow(st,inf);printf("%d\n",sum-ans);
return 0;
}
相關文章
- 網路流-最小割
- spoj 839 最小割應用
- 網路流(最大流,最小割)
- matlab練習程式(最大流/最小割)Matlab
- 偷寶石(最大流轉化最小割)
- 1.1.3.3 最小割之最小權覆蓋集、最大權獨立集
- SPOJ - OPTM Optimal Marks(進位制拆分+最小割)
- POJ 3308 Paratroopers 最小割、最大流OOP
- 網路流最大流、最小割學習筆記筆記
- The Way to HappinessAPP
- 論文導讀 | 最小屬性割RDF資料劃分
- Happiness, an acquisition listAPPUI
- 【BZOJ-1565】植物大戰殭屍 拓撲排序 + 最小割排序
- POJ 3469-Dual Core CPU(Dinic 最大流/最小割演算法)演算法
- POJ 2914-Minimum Cut(Stoer_Wagner最小割演算法)演算法
- UVA 10498 Happiness!(線性規劃)APP
- 無向圖最小割問題取得新突破,谷歌研究獲SODA 2024最佳論文獎谷歌
- 嗅探器(割點)
- 割繩子html5HTML
- Codeforces 1974G Money Buys Less Happiness NowAPP
- [LeetCode] 3075. Maximize Happiness of Selected ChildrenLeetCodeAPP
- 【筆記/模板】割點和橋筆記
- 2014多校聯合第十場A題||hdu 4971 最小割定理在最大權閉合圖上的應用
- c++閹割版binder實現C++
- oracle重要系統割接準備工作Oracle
- 一次被割韭菜的覆盤
- Codeforces Round 946 (Div. 3) G Money Buys Less Happiness Now(反悔貪心)APP
- Nginx - 最小配置Nginx
- 「學習筆記」雙連通分量、割點與橋筆記
- 智慧網第一批割接總結
- 亞信安慧AntDB零故障割接方案的實踐
- 快速實現一個簡單閹割版的HashMapHashMap
- 茅臺元宇宙遊戲被玩家質疑“割韭菜”元宇宙遊戲
- 智慧網第2批地市成功遷移割接上線
- 歪批IT之八:全國割據服務體系(轉)
- 最小的 Swift AppSwiftAPP
- 最小的Swift AppSwiftAPP
- 最小圓覆蓋