您的位置:首页 > 理论基础 > 计算机网络

BZOJ 1738: [Usaco2005 mar]Ombrophobic Bovines 发抖的牛 二分 网络流

2017-07-12 17:00 447 查看

1738: [Usaco2005 mar]Ombrophobic Bovines 发抖的牛

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 520  Solved: 176

[Submit][Status][Discuss]

Description

FJ's cows really hate getting wet so much that the mere thought of getting caught in the rain makes them shake in their hooves. They have decided to put a rain siren on the farm to let them know when
rain is approaching. They intend to create a rain evacuation plan so that all the cows can get to shelter before the rain begins. Weather forecasting is not always correct, though. In order to minimize false alarms, they want to sound the siren as late as
possible while still giving enough time for all the cows to get to some shelter. The farm has F (1 <= F <= 200) fields on which the cows graze. A set of P (1 <= P <= 1500) paths connects them. The paths are wide, so that any number of cows can traverse a path
in either direction. Some of the farm's fields have rain shelters under which the cows can shield themselves. These shelters are of limited size, so a single shelter might not be able to hold all the cows. Fields are small compared to the paths and require
no time for cows to traverse. Compute the minimum amount of time before rain starts that the siren must be sounded so that every cow can get to some shelter.

    约翰的牛们非常害怕淋雨,那会使他们瑟瑟发抖.他们打算安装一个下雨报警器,并且安排了一个撤退计划.他们需要计算最少的让所有牛进入雨棚的时间.    牛们在农场的F(1≤F≤200)个田地上吃草.有P(1≤P≤1500)条双向路连接着这些田地.路很宽,无限量的牛可以通过.田地上有雨棚,雨棚有一定的容量,牛们可以瞬间从这块田地进入这块田地上的雨棚    请计算最少的时间,让每只牛都进入雨棚.

Input

* Line 1: Two space-separated integers: F and P

 * Lines 2..F+1: Two space-separated integers that describe a field. The first integer (range: 0..1000) is the number of cows in that field. The second integer (range: 0..1000) is the number of cows
the shelter in that field can hold. Line i+1 describes field i. * Lines F+2..F+P+1: Three space-separated integers that describe a path. The first and second integers (both range 1..F) tell the fields connected by the path. The third integer (range: 1..1,000,000,000)
is how long any cow takes to traverse it.

    第1行:两个整数F和P;
    第2到F+1行:第i+l行有两个整数描述第i个田地,第一个表示田地上的牛数,第二个表示田地上的雨棚容量.两个整数都在0和1000之间.
    第F+2到F+P+I行:每行三个整数描述一条路,分别是起点终点,及通过这条路所需的时间(在1和10^9之间).

Output

* Line 1: The minimum amount of time required for all cows to get under a shelter, presuming they plan their routes optimally. If it not possible for the all the cows to get under a shelter, output "-1".

    一个整数,表示最少的时间.如果无法使牛们全部进入雨棚,输出-1.

Sample Input

3 4

7 2

0 4

2 6

1 2 40

3 2 70

2 3 90

1 3 120

Sample Output

110

1号田的7只牛中,2只牛直接进入1号田的雨棚,4只牛进入1号田的雨棚,1只进入3号田的雨棚,加入其他的由3号田来的牛们.所有的牛都能在110单位时间内到达要去的雨棚.

没想到。。。

二分用时,每个田地拆点成 x y

若a b之间最短路小于用时 ax 向 by 连边,容量inf

S向x连,y向T连

跑最短路 OK 

#include<cmath>
#include<ctime>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<complex>
#include<iostream>
#include<algorithm>
#include<iomanip>
#include<vector>
#include<string>
#include<bitset>
#include<queue>
#include<set>
#include<map>

using namespace std;

typedef long long ll;

inline int read()
{
int x=0,f=1;char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch<='9'&&ch>='0'){x=(x<<1)+(x<<3)+ch-'0';ch=getchar();}
return f*x;
}
inline void print(ll x)
{if(x<0)putchar('-'),x=-x;if(x>=10)print(x/10);putchar(x%10+'0');}

const int N=210,M=100100,inf=0X3f3f3f3f;

int con
,esc
,sum,n;

ll dis

;

int ecnt,S,T=(N<<1)-1,last[N<<1];

struct EDGE{int to,nt,val;}e[M];
inline void readd(int u,int v,int val)
{e[++ecnt]=(EDGE){v,last[u],val};last[u]=ecnt;}
inline void add(int u,int v,int val)
{readd(u,v,val);readd(v,u,0);}

int q[N<<1],d[N<<1];
bool bfs()
{
memset(d,0,sizeof(d));
register int head=0,tail=1,u,i;q[0]=S;d[S]=1;
while(head!=tail)
{
u=q[head++];if(head==N<<1)head=0;
for(i=last[u];i;i=e[i].nt)if(e[i].val&&!d[e[i].to])
{d[e[i].to]=d[u]+1,q[tail++]=e[i].to;if(tail==N<<1)tail=0;}
}
return d[T];
}

int dfs(int u,int lim)
{
if(u==T||!lim)return lim;
int res=0;
register int i,tmp;
for(i=last[u];i;i=e[i].nt)
if(d[e[i].to]==d[u]+1&&e[i].val)
{
tmp=dfs(e[i].to,min(e[i].val,lim));
e[i].val-=tmp;e[i^1].val+=tmp;lim-=tmp;res+=tmp;
if(!lim)break;
}
if(!res)d[u]=-1;
return res;
}

int flow;
bool dinic()
{while(bfs())flow+=dfs(S,inf);return flow==sum;}

inline void build(ll x)
{
ecnt=1;memset(last,0,sizeof(last));flow=0;
register int i,j;
for(i=1;i<=n;++i)for(j=1;j<=n;++j)
{if(dis[i][j]<=x)add(i,j+n,inf);}
for(i=1;i<=n;++i)add(S,i,esc[i]);
for(i=1;i<=n;++i)add(i+n,T,con[i]);
}

int main()
{
n=read();int m=read();
register int i,j,u,v,val,house=0;;
for(i=1;i<=n;++i){esc[i]=read();con[i]=read();sum+=esc[i];house+=con[i];}
if(house<sum){puts("-1");return 0;}
memset(dis,0X3f,sizeof(dis));
for(i=1;i<=n;++i)dis[i][i]=0;
for(i=1;i<=m;++i)
{u=read();v=read();val=read();if(dis[u][v]>val)dis[u][v]=dis[v][u]=val;}
for(i=1;i<=n;++i)for(u=1;u<=n;++u)for(v=1;v<=n;++v)
dis[u][v]=min(dis[u][v],dis[u][i]+dis[i][v]);
ll l=0,r=0X3f3f3f3f3f3f3f3fll,mid;
while(l<r){mid=l+r>>1;build(mid);if(dinic())r=mid;else l=mid+1;}
if(l==0X3f3f3f3f3f3f3f3fll)puts("-1");
else{print(l);puts("");}return 0;
}
/*
3 4
7 2
0 4
2 6
1 2 40
3 2 70
2 3 90
1 3 120

110
*/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐