luogu P3128 [USACO15DEC]最大流Max Flow

 

题目描述

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 yxy) 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

思路:树上点的差分,然后看输出被经过得最多次的次数就ok了。

#include <bits/stdc++.h>
using namespace std;

inline 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 - 48; ch = getchar(); }
    return x * f;
}

const int N = 5e4 + 10;
struct E { int v, ne; } e[200010];
int head[N], cnt, fa[N], lca[N][20], n, k, dep[N], s[N];
bool vis[N];

inline void add(int u, int v) { e[++cnt].v = v; e[cnt].ne = head[u]; head[u] = cnt; }

void dfs(int u) {
    vis[u] = 1;
    lca[u][0] = fa[u];
    for (int i = 1; i <= 16; i++) lca[u][i] = lca[lca[u][i-1]][i-1];
    for (int i = head[u]; i; i = e[i].ne) {
        int v = e[i].v;
        if (vis[v]) continue;
        dep[v] = dep[u] + 1;
        fa[v] = u;
        dfs(v); 
    }
}

void getans(int u) {
    for (int i = head[u]; i; i = e[i].ne) {
        int v = e[i].v;
        if (v == lca[u][0]) continue;
        getans(v);
        s[u] += s[v];
    }
}

int Lca(int u, int v) {
    if (dep[u] < dep[v]) swap(u, v);
    for (int i = 16; i >= 0; i--) if (dep[lca[u][i]] >= dep[v]) u = lca[u][i];
    if (u == v) return u;
    for (int i = 16; i >= 0; i--) if (lca[u][i] != lca[v][i]) u = lca[u][i], v = lca[v][i];
    return lca[u][0];
}

int main() {
    n = read(), k = read();
    for (int i = 1; i < n; i++) {
        int u = read(), v = read();
        add(u, v);
        add(v, u);
    }
    dep[1] = 1;
    dfs(1);
    while (k--) {
        int u = read(), v = read();
        int p = Lca(u, v);
        s[u]++, s[v]++;
        s[p]--, s[lca[p][0]]--;
    }
    getans(1);
    int ans = 0;
    for (int i = 1; i <= n; i++) ans = max(ans, s[i]);
    printf("%d\n", ans);
    return 0;
}
View Code

 

转载于:https://www.cnblogs.com/Mrzdtz220/p/11027904.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值