博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BZOJ 2502: 清理雪道 [最小流]
阅读量:5966 次
发布时间:2019-06-19

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

2502: 清理雪道

题意:任意点出发任意次每条边至少经过一次最小花费。


下界1,裸最小流....

#include 
#include
#include
#include
using namespace std;#define fir first#define sec secondtypedef long long ll;const int N=1005, M=4e5+5, INF=1e9;inline ll read(){ char c=getchar();ll x=0,f=1; while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();} while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();} return x*f;}int n, m, x, s, t, tot, extra[N];struct edge{int v, c, f, ne, lower;}e[M];int cnt=1, h[N];inline int ins(int u, int v, int c, int b=0) { e[++cnt]=(edge){v, c, 0, h[u], b}; h[u]=cnt; e[++cnt]=(edge){u, 0, 0, h[v], b}; h[v]=cnt; return cnt-1;}int q[N], head, tail, vis[N], d[N], cur[N];bool bfs(int s, int t) { memset(vis, 0, sizeof(vis)); head=tail=1; q[tail++]=s; d[s]=0; vis[s]=1; while(head!=tail) { int u=q[head++]; for(int i=h[u];i;i=e[i].ne) if(!vis[e[i].v] && e[i].c>e[i].f) { vis[e[i].v]=1; d[e[i].v]=d[u]+1; q[tail++]=e[i].v; if(e[i].v == t) return true; } } return false;}int dfs(int u, int a, int t) { if(u==t || a==0) return a; int flow=0, f; for(int &i=cur[u];i;i=e[i].ne) if(d[e[i].v]==d[u]+1 && (f=dfs(e[i].v, min(a, e[i].c-e[i].f), t))>0) { flow+=f; e[i].f+=f; e[i^1].f-=f; a-=f; if(a==0) break; } if(a) d[u]=-1; return flow;}int dinic(int s, int t) { int flow=0; while(bfs(s, t)) { for(int i=0; i<=tot; i++) cur[i]=h[i]; flow+=dfs(s, INF, t); } return flow;}int main() { freopen("in","r",stdin); n=read(); s=0; t=n+1; for(int i=1; i<=n; i++) { m=read(); while(m--) x=read(), ins(i, x, INF, 1), extra[i]--, extra[x]++; ins(s, i, INF); ins(i, t, INF); } int ss=t+1, tt=t+2, sum=0; tot=tt; for(int i=s; i<=t; i++) { if(extra[i]>0) ins(ss, i, extra[i]), sum+=extra[i]; if(extra[i]<0) ins(i, tt, -extra[i]); } ins(t, s, INF); int flow=dinic(ss, tt); //printf("flow %d\n",flow); int feas = e[cnt-1].f; e[cnt-1].c = e[cnt].c = 0; printf("%d",feas-dinic(t, s));}

转载地址:http://samax.baihongyu.com/

你可能感兴趣的文章
第10讲 | 深入区块链技术(二):P2P网络
查看>>
iOS进阶(XML、JSON数据解析)
查看>>
SignalR的Javascript客户端API使用方式整合
查看>>
使用CocoaPods做项目管理
查看>>
java synchronized讨论
查看>>
China’s movie heroes 《红海行动》展现中国英雄本色
查看>>
【转】POST数据到指定url并返回结果页面内容
查看>>
【Android手机测试】OOM
查看>>
重建二叉树
查看>>
Linux实战教学笔记42:squid代理与缓存实践(一)
查看>>
Doki Doki Literature Club
查看>>
hdu 1861 游船出租 tag:模拟
查看>>
后台图片验证码功能是什么实现的
查看>>
Android权限
查看>>
UVA 714 Copying Books
查看>>
常用的激活函数
查看>>
【Java学习】网络编程1
查看>>
sqlcmd
查看>>
Excel 已经检测到"XXX.xsl"是SYLK文件,但是不能将其加载的问题
查看>>
(基础篇)PHP获取时间、时间戳的各种格式写法汇总
查看>>