洛谷 P3128 [USACO15DEC]最大流Max Flow

12 篇文章 0 订阅

题目描述

Farmer John has installed a new system of N-1N−1 pipes to transport milk between the NN stalls in his barn (2 \leq N \leq 50,0002≤N≤50,000), conveniently numbered 1 \ldots N1…N. Each pipe connects a pair of stalls, and all stalls are connected to each-other via paths of pipes.

FJ is pumping milk between KK pairs of stalls (1 \leq K \leq 100,0001≤K≤100,000). For the iith such pair, you are told two stalls s_is
​i
​​ and t_it
​i
​​ , endpoints of a path along which milk is being pumped at a unit rate. FJ is concerned that some stalls might end up overwhelmed with all the milk being pumped through them, since a stall can serve as a waypoint along many of the KK paths along which milk is being pumped. Please help him determine the maximum amount of milk being pumped through any stall. If milk is being pumped along a path from s_is
​i
​​ to t_it
​i
​​ , then it counts as being pumped through the endpoint stalls s_is
​i
​​ and

t_it
​i
​​ , as well as through every stall along the path between them.

FJ给他的牛棚的N(2≤N≤50,000)个隔间之间安装了N-1根管道,隔间编号从1到N。所有隔间都被管道连通了。

FJ有K(1≤K≤100,000)条运输牛奶的路线,第i条路线从隔间si运输到隔间ti。一条运输路线会给它的两个端点处的隔间以及中间途径的所有隔间带来一个单位的运输压力,你需要计算压力最大的隔间的压力是多少。

输入输出格式

输入格式:
The first line of the input contains NN and KK.

The next N-1N−1 lines each contain two integers xx and yy (x \ne yx≠y) describing a pipe

between stalls xx and yy.

The next KK lines each contain two integers ss and tt describing the endpoint

stalls of a path through which milk is being pumped.

输出格式:
An integer specifying the maximum amount of milk pumped through any stall in the

barn.

输入输出样例

输入样例#1:
5 10
3 4
1 5
4 2
5 4
5 4
5 4
3 5
4 3
4 3
1 3
3 5
5 4
1 5
3 4
输出样例#1:
9

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
#define MAXN 50010
inline int read(int &x){
    x=0; int f=1; char c=getchar();
    while(c>'9'||c<'0'){ if(c=='-') f=-1;c=getchar(); }
    while(c>='0'&&c<='9'){ x=x*10+c-'0';c=getchar(); } x*=f;
}
struct Edge{ int to,next; }e[MAXN<<1];
int head[MAXN],tot,n,m,dep[MAXN],sum[MAXN];
int top[MAXN],son[MAXN],siz[MAXN],fa[MAXN];
inline void Add_Edge(int u,int v){ e[++tot].to=v;e[tot].next=head[u];head[u]=tot; }

void DFS_1(int u,int father,int deepth){
    dep[u]=deepth; siz[u]=1; fa[u]=father;
    for(int i=head[u];i;i=e[i].next){
        int v=e[i].to;
        if(v==father) continue;
        DFS_1(v,u,deepth+1); siz[u]+=siz[v];
        if(!son[u]||siz[son[u]]<siz[v]) son[u]=v;
    }
}

void DFS_2(int u,int Top){
    top[u]=Top;
    if(son[u]) DFS_2(son[u],Top);
    for(int i=head[u];i;i=e[i].next){
        int v=e[i].to;
        if(v==son[u]||v==fa[u]) continue;
        DFS_2(v,v);
    }
}

int LCA(int u,int v){
    while(top[u]!=top[v]){
        if(dep[top[u]]<dep[top[v]]) swap(u,v);
        u=fa[top[u]];
    }
    if(dep[u]>dep[v]) swap(u,v);
    return u;
}

int ans=-1e9;
int calc(int u,int father){
    int ret=sum[u];
    for(int i=head[u];i;i=e[i].next){
        int v=e[i].to;
        if(v==father) continue;
        ret+=calc(v,u);
    }
    ans=max(ans,ret);
    return ret;
}

int main(){
    read(n),read(m);
    for(int u,v,i=1;i<n;++i){
        read(u),read(v);
        Add_Edge(u,v),Add_Edge(v,u);
    }
    DFS_1(1,0,1); DFS_2(1,0);
    for(int i=1,u,v;i<=m;++i){
        read(u),read(v);
        sum[u]++,sum[v]++;
        int lca=LCA(u,v);
        sum[lca]--;
        if(fa[lca]) --sum[fa[lca]];
    }
    calc(1,0);
    printf("%d\n",ans);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

七情六欲·

学生党不容易~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值