POJ2455 Secret Milking Machine【二分,最大流】

题目大意:N个点P条边,令存在T条从1到N的路径,求路径上的边权的最大值最小为多少

思路:做了好多二分+最大流的题了,思路很好出 二分出最大边权后建图,跑dinic

问题是。。。。这题是卡常数的好题!!!!!

T了8发以后实在受不了,瞄了眼网上的程序,齐刷刷的邻接矩阵。。。。论邻接矩阵的优越性

但不信邪的我终于反复优化常数后邻接表A了

//TLE的程序

#include <stdio.h>

#include <iostream>

#include <string.h>

#include <algorithm>

#include <queue>

#define maxn 200090

#define esp 0.001

#define inf 0x3f3f3f3f

using namespace std;

int head[300],next[maxn],point[maxn],now=0;

int flow[maxn],dist[300];

int tt,p,h=0,n;

struct T

{

int x;int y;int v;

}a[maxn];

void add(int x,int y,int v)

{

next[++now]=head[x];

head[x]=now;

point[now]=y;

flow[now]=v;

next[++now]=head[y];

head[y]=now;

point[now]=x;

flow[now]=0;

}

int bfs(int s,int t,int x)

{

queue<int>q;

q.push(s);

memset(dist,-1,sizeof(dist));

dist[s]=0;

while(!q.empty())

{

int u=q.front();

q.pop();

for(int i=head[u];i;i=next[i])

{

int k=point[i];

if(flow[i]!=0&&dist[k]==-1)

{

dist[k]=dist[u]+1;

q.push(k);

}

}

}

return dist[t]!=-1;

}

int dfs(int s,int d,int t,int x)

{

if(s==t)return d;

int res=0;

for(int i=head[s];i&&res<d;i=next[i])

{

int u=point[i];

if(flow[i]&&dist[u]==dist[s]+1)

{

int dd=dfs(u,min(flow[i],d-res),t,x);

if(dd)

{

flow[i]-=dd;

flow[((i-1)^1)+1]+=dd;

res+=dd;

}

}

}

if(res==0)dist[s]=-1;

return res;

}

int judge(int x,int s,int t)

{

int ans=0;

memset(head,0,sizeof(head));

now=0;

for(int i=1;i<=p;i++)if(a[i].v<=x)

{

add(a[i].x,a[i].y,1);

add(a[i].y,a[i].x,1);

}

add(s,1,tt);add(n,t,inf);

while(bfs(s,t,x))

{ans+=dfs(s,inf,t,x);}

if(ans>=tt)return 1;else return 0;

}

int read()

{

int x=0,f=1;char ch=getchar();

while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();}

while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();}

return x*f;

}

int main()

{

int x,y,v;

int l=0x3f3f3f3f,r=0,mid;

scanf("%d%d%d",&n,&p,&tt);

int s=n+10,t=n+12;

for(int i=1;i<=p;i++)

{

x=read();y=read();v=read();

a[i].x=x;a[i].y=y;a[i].v=v;

r=max(r,v);

l=min(l,v);

}

while(mid=(l+r)>>1,l<r)

{

if(judge(mid,s,t)==1)r=mid;else l=mid+1;

}

printf("%d\n",r);

return 0;

}

//AC的程序

#include <stdio.h>

#include <iostream>

#include <string.h>

#include <algorithm>

#include <queue>

#define maxn 200090

#define esp 0.001

#define inf 0x3f3f3f3f

using namespace std;

int head[300],next[maxn],point[maxn],now=0;

int flow[maxn],dist[300];

int tt,p,h=0,n;

struct T

{

int x;int y;int v;

}a[maxn];

void add(int x,int y,int v)

{

next[++now]=head[x];

head[x]=now;

point[now]=y;

flow[now]=v;

next[++now]=head[y];

head[y]=now;

point[now]=x;

flow[now]=0;

}

int bfs(int s,int t,int x)

{

queue<int>q;

q.push(s);

memset(dist,-1,sizeof(dist));

dist[s]=0;

while(!q.empty())

{

int u=q.front();

q.pop();

for(int i=head[u];i;i=next[i])

{

int k=point[i];

if(flow[i]!=0&&dist[k]==-1)

{

dist[k]=dist[u]+1;

q.push(k);

}

}

}

return dist[t]!=-1;

}

int dfs(int s,int d,int t,int x)

{

if(s==t)return d;

int res=0;

for(int i=head[s];i&&res<d;i=next[i])

{

int u=point[i];

if(flow[i]&&dist[u]==dist[s]+1)

{

int dd=dfs(u,min(flow[i],d-res),t,x);

if(dd)

{

flow[i]-=dd;

flow[((i-1)^1)+1]+=dd;

res+=dd;

}

}

}

if(res==0)dist[s]=-1;

return res;

}

int judge(int x,int s,int t)

{

int ans=0;

memset(head,0,sizeof(head));

now=0;

for(int i=1;i<=p;i++)if(a[i].v<=x)

{

add(a[i].x,a[i].y,1);

add(a[i].y,a[i].x,1);

}

add(s,1,tt);add(n,t,inf);

while(bfs(s,t,x))

{ans+=dfs(s,inf,t,x);}

if(ans>=tt)return 1;else return 0;

}

int read()

{

int x=0,f=1;char ch=getchar();

while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();}

while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();}

return x*f;

}

int main()

{

int x,y,v;

int l=0x3f3f3f3f,r=0,mid;

scanf("%d%d%d",&n,&p,&tt);

int s=n+10,t=n+12;

for(int i=1;i<=p;i++)

{

x=read();y=read();v=read();

a[i].x=x;a[i].y=y;a[i].v=v;

r=max(r,v);

l=min(l,v);

}

while(mid=(l+r)>>1,l<r)

{

if(judge(mid,s,t)==1)r=mid;else l=mid+1;

}

printf("%d\n",r);

return 0;

}

做完也是醉了,不A不睡觉TUT

时间: 2024-10-26 05:09:16

POJ2455 Secret Milking Machine【二分,最大流】的相关文章

POJ 2455 Secret Milking Machine (二分 + 最大流)

题目大意: 给出一张无向图,找出T条从1..N的路径,互不重复,求走过的所有边中的最大值最小是多少. 算法讨论: 首先最大值最小就提醒我们用二分,每次二分一个最大值,然后重新构图,把那些边权符合要求的边加入新图,在新图上跑网络流. 这题有许多注意的地方: 1.因为是无向图,所以我们在加正向边和反向边的时候,流量都是1,而不是正向边是1,反向边是0. 2.题目中说这样的路径可能不止t条,所以我们在最后二分判定的时候不能写 == t,而是要 >= t. 3.这题很容易T ,表示我T了N遍,弱菜啊.

poj2455 Secret Milking Machine

思路: 二分+最大流. 实现: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <limits.h> 4 #include <string.h> 5 #include <assert.h> 6 #include <queue> 7 #include <vector> 8 #include <algorithm> 9 #include <iostr

POJ 2455 Secret Milking Machine(二分+最大流)

POJ 2455 Secret Milking Machine 题目链接 题意:一个无向图,要求有T条不重复道路可以从1走到t,问道路中最大边的最小值可以是多少 思路:二分+最大流,二分长度,连起边,注意是无向图,所以反向边是有容量的,然后源点和1连容量t,n和汇点连容量是t 代码: #include <cstdio> #include <cstring> #include <queue> #include <algorithm> using namespa

POJ 2455 Secret Milking Machine(搜索-二分,网络流-最大流)

Secret Milking Machine Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9658   Accepted: 2859 Description Farmer John is constructing a new milking machine and wishes to keep it secret as long as possible. He has hidden in it deep within

【bzoj1733】[Usaco2005 feb]Secret Milking Machine 神秘的挤奶机 二分+网络流最大流

题目描述 Farmer John is constructing a new milking machine and wishes to keep it secret as long as possible. He has hidden in it deep within his farm and needs to be able to get to the machine without being detected. He must make a total of T (1 <= T <=

poj 2455 Secret Milking Machine 【二分 + 最大流】 【1到N不重复路径不少于T条时,求被选中路径上的最大边权值 的最小值】

Secret Milking Machine Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 10620   Accepted: 3110 Description Farmer John is constructing a new milking machine and wishes to keep it secret as long as possible. He has hidden in it deep within

[bzoj1733][Usaco2005 feb]Secret Milking Machine 神秘的挤奶机_网络流

[Usaco2005 feb]Secret Milking Machine 神秘的挤奶机 题目大意:约翰正在制造一台新型的挤奶机,但他不希望别人知道.他希望尽可能久地隐藏这个秘密.他把挤奶机藏在他的农场里,使它不被发现.在挤奶机制造的过程中,他需要去挤奶机所在的地方T(1≤T≤200)次.他的农场里有秘密的地道,但约翰只在返回的时候用它.农场被划分成N(2≤N≤200)块区域,用1到200标号.这些区域被P(1≤P≤40000)条道路连接,每条路有一个小于10^6的长度L.两块区域之间可能有多条

POJ 2112 Optimal Milking(二分+最大流)

POJ 2112 Optimal Milking 题目链接 题意:给定一些机器和奶牛,在给定距离矩阵,(不在对角线上为0的值代表不可达),每个机器能容纳m个奶牛,问所有奶牛都能挤上奶,那么走的距离最大的奶牛的最小值是多少 思路:明显的二分+最大流,注意floyd求出的距离矩阵最大值可能不止200,所以二分的上限要注意 代码: #include <cstdio> #include <cstring> #include <queue> #include <algori

[BZOJ 1733] [Usaco2005 feb] Secret Milking Machine 【二分 + 最大流】

题目链接:BZOJ - 1733 题目分析 直接二分这个最大边的边权,然后用最大流判断是否可以有 T 的流量. 代码 #include <iostream> #include <cstdlib> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; const int MaxN = 200 + 5,