博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BZOJ3511: 土地划分
阅读量:5316 次
发布时间:2019-06-14

本文共 1637 字,大约阅读时间需要 5 分钟。

【传送门:】


简要题意:

  给出n个点,m条边,每个点有A和B两种形态,一开始1为A,n为B

  给出VA[i]和VB[i],表示第i个点选择A和B形态的价值

  每条边给出x,y,EA,EB,EC,表示如果x和y都为A,则获得EA价值,如果都为B则获得EB价值,否则会得到EC的费用(就是负价值)

  求出最大价值


题解:

  神奇的最小割,太强了

  


参考代码:

#include
#include
#include
#include
#include
using namespace std;struct node{ int x,y,c,next,other;}a[2100000];int len,last[110000];void ins(int x,int y,int c){ int k1=++len,k2=++len; a[k1].x=x;a[k1].y=y;a[k1].c=c; a[k1].next=last[x];last[x]=k1; a[k2].x=y;a[k2].y=x;a[k2].c=0; a[k2].next=last[y];last[y]=k2; a[k1].other=k2; a[k2].other=k1;}int h[110000],list[110000],st,ed;bool bt_h(){ memset(h,0,sizeof(h)); h[st]=1; int head=1,tail=2; list[1]=st; 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; else 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&&f>s) { 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 main(){ int n,m; scanf("%d%d",&n,&m); int sum=0;st=0;ed=n+2*m+1; len=0;memset(last,0,sizeof(last)); ins(st,1,999999999); for(int i=2;i

 

转载于:https://www.cnblogs.com/Never-mind/p/8636914.html

你可能感兴趣的文章
一些有意思的算法代码[转载]
查看>>
redis下并发问题解决方案
查看>>
poj 题目分类
查看>>
An easy problem
查看>>
windows 安装yaml支持和pytest支持等
查看>>
读书笔记:季羡林关于如何做研究学问的心得
查看>>
面向对象的优点
查看>>
[转载]unix环境高级编程备忘:理解保存的设置用户ID,设置用户ID位,有效用户ID,实际用户ID...
查看>>
堆排序
查看>>
套接口和I/O通信
查看>>
thinkpaidE480office安装文件夹
查看>>
eclipse中git插件配置 编辑
查看>>
初识Spark2.0之Spark SQL
查看>>
Atlas Unknown Error
查看>>
变量与常量
查看>>
Dom4J 解析xml ,类查询
查看>>
IIS相关问题及解决方案
查看>>
PAT1070. Mooncake (25)
查看>>
大数据:Parquet文件存储格式
查看>>
知道这20个正则表达式,能让你少写1,000行代码
查看>>