洛谷P3128 [USACO15DEC]Max Flow P(树上点差分裸题)

题目描述

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

FJ is pumping milk between KKK pairs of stalls (1≤K≤100,0001 \leq K \leq 100,0001K100,000). For the iiith such pair, you are told two stalls sis_isi and tit_iti, 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 KKK 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 sis_isi to tit_iti, then it counts as being pumped through the endpoint stalls sis_isi and

tit_iti, 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 NNN and KKK.

The next N−1N-1N1 lines each contain two integers xxx and yyy (x≠yx \ne yx=y) describing a pipe

between stalls xxx and yyy.

The next KKK lines each contain two integers sss and ttt 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 <queue>
#include <cmath>
#include <algorithm>
using namespace std;
const int SIZE=50005;
int f[SIZE][22],d[SIZE],vis[SIZE],lg[SIZE];
int ver[SIZE*2],Next[SIZE*2],head[SIZE];
int diff[SIZE];
int n,k,tot=0;
queue<int>q;
int ans=0;
void add(int x,int y)
{
    ver[++tot]=y,Next[tot]=head[x],head[x]=tot;
}
void bfs()
{
    q.push(1),d[1]=1;
    while(q.size())
    {
        int x=q.front();q.pop();
        int i;
        for(i=head[x];i;i=Next[i])
        {
            int y=ver[i];
            if(d[y])continue;
            d[y]=d[x]+1;
            f[y][0]=x;
            int j;
            for(j=1;j<=lg[d[x]];j++)
            {
                f[y][j]=f[f[y][j-1]][j-1];
            }
            q.push(y);
        }
    }
}
int lca(int x,int y)
{
    if(d[x]<d[y])swap(x,y);
    while(d[x]>d[y])
    {
        x=f[x][lg[d[x]-d[y]]-1];
    }
    if(x==y)return x;
    int i;
    for(i=lg[d[x]]-1;i>=0;i--)
    {
        if(f[x][i]!=f[y][i])x=f[x][i],y=f[y][i];
    }
    return f[x][0];
}
void dfs(int x,int pre)
{
    int i;
    for(i=head[x];i;i=Next[i])
    {
        int y=ver[i];
        if(y==pre)continue;
        dfs(y,x);//此时y已经被更新过了 
        diff[x]+=diff[y]; 
    }
    ans=max(ans,diff[x]);
}
int main()
{
    cin>>n>>k;
    int i;
    for(i=1;i<=n;i++)lg[i]=lg[i-1]+(1<<lg[i-1]==i);
    memset(diff,0,sizeof(diff));
    for(i=1;i<=n-1;i++)
    {
        int x,y;
        scanf("%d%d",&x,&y);
        add(x,y);
        add(y,x);
    }
    bfs();//千万别忘了加 
    for(i=1;i<=k;i++)
    {
        int x,y;
        scanf("%d%d",&x,&y);
        int anc=lca(x,y);
        diff[x]++,diff[y]++,diff[anc]--,diff[f[anc][0]]--;//树上点差分 
    }
    dfs(1,0);
    cout<<ans;
    return 0;
}
原文地址:https://www.cnblogs.com/lipoicyclic/p/12626862.html