博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bzoj1738: [Usaco2005 mar]Ombrophobic Bovines 发抖的牛
阅读量:5013 次
发布时间:2019-06-12

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

不难写。调了1hQAQ

1.莫名其妙的错误。不要太多的东西放在主函数里面写,写成一个一个的函数比较清晰;

2.r=inf-1。如果=inf很明显是错的。

然后就因为这两个原因WA了1h。sading 。。。

哦对了。这个是floyed+二分+maxflow.有个 饶齐CSDN 介绍很多东西。。。

#include
#include
#include
#include
using namespace std;#define rep(i,n) for(int i=1;i<=n;i++)#define ll long long#define clr(x,c) memset(x,c,sizeof(x))int read(){ int x=0;char c=getchar();bool f=true; while(!isdigit(c)) { if(c=='-') f=false;c=getchar(); } while(isdigit(c)) x=x*10+c-'0',c=getchar(); return f?x:-x;}const int nmax=505;const int maxn=100005;const ll inf=1e15;const int Inf=0x7f7f7f7f;struct edge{ int to,cap;edge *next,*rev;};edge edges[maxn],*pt,*head[nmax],*cur[nmax],*p[nmax];int cnt[nmax],h[nmax],a[nmax],b[nmax],F,sum=0;ll g[nmax][nmax];void add(int u,int v,int d){ pt->to=v;pt->cap=d;pt->next=head[u];head[u]=pt++;}void adde(int u,int v,int d){ add(u,v,d);add(v,u,0);head[u]->rev=head[v];head[v]->rev=head[u];}int maxflow(int s,int t,int n){ clr(cnt,0);cnt[0]=n;clr(h,0);clr(cur,0); int flow=0,a=Inf,x=s;edge *e; while(h[s]
next) if(e->cap>0&&h[x]==h[e->to]+1) break; if(e){ a=min(a,e->cap),p[e->to]=cur[x]=e,x=e->to; if(x==t){ while(x!=s) p[x]->cap-=a,p[x]->rev->cap+=a,x=p[x]->rev->to; flow+=a,a=Inf; } }else{ if(!--cnt[h[x]]) break; h[x]=n; for(e=head[x];e;e=e->next) if(e->cap>0&&h[x]>h[e->to]+1) h[x]=h[e->to]+1,cur[x]=e; cnt[h[x]]++; if(x!=s) x=p[x]->rev->to; } } return flow;}ll find(){ ll l=0,r=inf-1,m; int s=0,t=F+F+1,n=t+1;ll ans=-1; while(l<=r){ m=(l+r)>>1;pt=edges;clr(head,0); rep(i,F) adde(s,i,a[i]),adde(i+F,t,b[i]); rep(i,F) rep(j,F) if(g[i][j]<=m) adde(i,j+F,Inf); /*for(int i=0;i<=n;i++){ for(edge *o=head[i];o;o=o->next) printf("%d %d\n",o->to,o->cap); printf("\n"); }*/ int tmp; if((tmp=maxflow(s,t,n))==sum) r=m-1,ans=m; else l=m+1; // printf("%lld %lld %lld:%d\n",l,r,m,tmp); } return ans;}int main(){ F=read();int P=read(),u,v;ll d; rep(i,F) a[i]=read(),b[i]=read(),sum+=a[i]; rep(i,F) rep(j,F) g[i][j]=inf; rep(i,F) g[i][i]=0; rep(i,P) u=read(),v=read(),d=read(),g[u][v]=g[v][u]=min(d,g[u][v]); rep(k,F) rep(i,F) rep(j,F) if(g[i][k]!=inf&&g[k][j]!=inf) g[i][j]=min(g[i][j],g[i][k]+g[k][j]); printf("%lld\n",find()); return 0;}

  

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

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 367  Solved: 134
[][][]

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单位时间内到达要去的雨棚.

HINT

 

Source

[ ][ ][ ]

转载于:https://www.cnblogs.com/fighting-to-the-end/p/5658830.html

你可能感兴趣的文章
POJ 1860 Currency Exchange(SPFA 判断有无“正”环)
查看>>
广告地址屏蔽
查看>>
收缩SqlServer数据库日记方法
查看>>
每日英语:15 places to find inspiration
查看>>
学习方法--提问
查看>>
【转】每天一个linux命令(3):pwd命令
查看>>
merge-two-sorted-lists
查看>>
MySQL(3)
查看>>
poj1061——扩展gcd水题
查看>>
UVa400.Unix ls
查看>>
POJ 2299 Ultra-QuickSort 归并排序、二叉排序树,求逆序数
查看>>
Educational Codeforces Round 60 (Rated for Div. 2) C. Magic Ship
查看>>
Windows 2008 R2系统开机时如何不让Windows进行磁盘检测?
查看>>
WP7应用开发笔记(18) 本地化与多语言
查看>>
解决 .so文件64与32不兼容问题
查看>>
归并排序法
查看>>
【剑指offer】面试题26:复杂链表的复制
查看>>
spark开发生成EXE
查看>>
Vue 全家桶介绍
查看>>
WPF Bitmap转Imagesource
查看>>