https://www.luogu.org/problem/show?pid=3128

题目描述

Farmer John has installed a new system of  pipes to transport milk between the  stalls in his barn (), conveniently numbered . Each pipe connects a pair of stalls, and all stalls are connected to each-other via paths of pipes.

FJ is pumping milk between  pairs of stalls (). For the th such pair, you are told two stalls  and , 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  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  to , then it counts as being pumped through the endpoint stalls  and

, 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  and .

The next  lines each contain two integers  and  () describing a pipe

between stalls  and .

The next  lines each contain two integers  and  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:

  1. 5 10
  2. 3 4
  3. 1 5
  4. 4 2
  5. 5 4
  6. 5 4
  7. 5 4
  8. 3 5
  9. 4 3
  10. 4 3
  11. 1 3
  12. 3 5
  13. 5 4
  14. 1 5
  15. 3 4
输出样例#1:

  1. 9

树剖+树上查分

  1. #include <algorithm>
  2. #include <cstdio>
  3.  
  4. using namespace std;
  5.  
  6. const int N(+);
  7. int n,k,u,v;
  8.  
  9. int head[N],sumedge;
  10. struct Edge
  11. {
  12. int v,next;
  13. Edge(int v=,int next=):
  14. v(v),next(next){}
  15. }edge[N<<];
  16. void ins(int u,int v)
  17. {
  18. edge[++sumedge]=Edge(v,head[u]);
  19. head[u]=sumedge;
  20. }
  21.  
  22. int size[N],deep[N],dad[N],top[N];
  23. void DFS(int x)
  24. {
  25. size[x]=; deep[x]=deep[dad[x]]+;
  26. for(int i=head[x];i;i=edge[i].next)
  27. {
  28. int v=edge[i].v;
  29. if(dad[x]==v) continue;
  30. dad[v]=x; DFS(v); size[x]+=size[v];
  31. }
  32. }
  33. void DFS_(int x)
  34. {
  35. int t=; if(!top[x]) top[x]=x;
  36. for(int i=head[x];i;i=edge[i].next)
  37. {
  38. int v=edge[i].v;
  39. if(dad[x]!=v&&size[t]<size[v]) t=v;
  40. }
  41. if(t) top[t]=top[x],DFS_(t);
  42. for(int i=head[x];i;i=edge[i].next)
  43. {
  44. int v=edge[i].v;
  45. if(dad[x]!=v&&t!=v) DFS_(v);
  46. }
  47. }
  48. int LCA(int x,int y)
  49. {
  50. for(;top[x]!=top[y];x=dad[top[x]])
  51. if(deep[top[x]]<deep[top[y]]) swap(x,y);
  52. return deep[x]<deep[y]?x:y;
  53. }
  54.  
  55. int ans,val[N];
  56. void DFS_val(int x)
  57. {
  58. for(int i=head[x];i;i=edge[i].next)
  59. {
  60. int v=edge[i].v;
  61. if(dad[x]==v) continue;
  62. DFS_val(v); val[x]+=val[v];
  63. }
  64. ans=max(val[x],ans);
  65. }
  66.  
  67. int main()
  68. {
  69. scanf("%d%d",&n,&k);
  70. for(int i=;i<n;i++)
  71. {
  72. scanf("%d%d",&u,&v);
  73. ins(u,v); ins(v,u);
  74. }
  75. DFS(); DFS_();
  76. for(;k--;)
  77. {
  78. scanf("%d%d",&u,&v);
  79. val[u]++; val[v]++;
  80. int lca=LCA(u,v);
  81. val[lca]--;val[dad[lca]]--;
  82. }
  83. DFS_val();
  84. printf("%d",ans);
  85. return ;
  86. }

洛谷——P3128 [USACO15DEC]最大流Max Flow的更多相关文章

  1. 洛谷P3128 [USACO15DEC]最大流Max Flow

    P3128 [USACO15DEC]最大流Max Flow 题目描述 Farmer John has installed a new system of N-1N−1 pipes to transpo ...

  2. 洛谷P3128 [USACO15DEC]最大流Max Flow [树链剖分]

    题目描述 Farmer John has installed a new system of  pipes to transport milk between the  stalls in his b ...

  3. 洛谷 P3128 [ USACO15DEC ] 最大流Max Flow —— 树上差分

    题目:https://www.luogu.org/problemnew/show/P3128 倍增求 lca 也写错了活该第一次惨WA. 代码如下: #include<iostream> ...

  4. 洛谷P3128 [USACO15DEC]最大流Max Flow [倍增LCA]

    题目描述 Farmer John has installed a new system of  pipes to transport milk between the  stalls in his b ...

  5. 洛谷P3128 [USACO15DEC]最大流Max Flow(树上差分)

    题意 题目链接 Sol 树上差分模板题 发现自己傻傻的分不清边差分和点差分 边差分就是对边进行操作,我们在\(u, v\)除加上\(val\),同时在\(lca\)处减去\(2 * val\) 点差分 ...

  6. 洛谷 P3128 [USACO15DEC]最大流Max Flow

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

  7. 洛谷P3128 [USACO15DEC]最大流Max Flow (树上差分)

    ###题目链接### 题目大意: 给你一棵树,k 次操作,每次操作中有 a  b 两点,这两点路上的所有点都被标记一次.问你 k 次操作之后,整棵树上的点中被标记的最大次数是多少. 分析: 1.由于数 ...

  8. 题解——洛谷P3128 [USACO15DEC]最大流Max Flow

    裸的树上差分 因为要求点权所以在点上差分即可 #include <cstdio> #include <algorithm> #include <cstring> u ...

  9. 洛谷 P3128 [USACO15DEC]最大流Max Flow-树上差分(点权/点覆盖)(模板题)

    因为徐州现场赛的G是树上差分+组合数学,但是比赛的时候没有写出来(自闭),背锅. 会差分数组但是不会树上差分,然后就学了一下. 看了一些东西之后,对树上差分写一点个人的理解: 首先要知道在树上,两点之 ...

随机推荐

  1. CCNA Cloud CLDFND 210-451 QUIZ: Server Virtualization

    Author:海峰 http://weibo.com/344736086 http://yanheven.github.io/ http://blog.csdn.net/yanheven1 1.Whi ...

  2. 具体解释Hibernate中的二级缓存

    1.前言 这篇博客再前几篇博客的基础上来解说一下.Hibernate中的二级缓存.二级缓存是属于SessionFactory级别的缓存机制. 第一级别的缓存是Session级别的缓存,是属于事务范围的 ...

  3. 4. Brackets 前端编辑器试用

    转自:https://blog.csdn.net/wuji3390/article/details/71170579 Brackets编辑器介绍 "一个现代的,开源的,了解网页设计的编辑器& ...

  4. POJ 2133 暴搜

    题意: 思路: 按照题意暴搜 注意 如果目标串==给的串 答案是2 //By SiriurRen #include <cstdio> #include <cstring> #i ...

  5. POJ 1904 思路题

    思路: 思路题 题目诡异地给了一组可行匹配 肯定有用啊-. 就把那组可行的解 女向男连一条有向边 如果男喜欢女 男向女连一条有向边 跑一边Tarjan就行了 (这个时候 环里的都能选 "增广 ...

  6. POJ 2433 枚举

    题意: 思路: 每回枚举去哪个山包 枚举的姿势很重要 //By SiriusRen #include <cstdio> #include <algorithm> using n ...

  7. 【深入篇】Andorid中常用的控件及属性

    TextView  android:autoLink 设置是否当文本为URL链接/email/电话号码/map时,文本显示为可点击的链接.可选值(none/web/email/phone/map/al ...

  8. 5个jvm命令

    本文是Neward & Associates的总裁Ted Neward为developerworks独家撰稿“你不知道5个……”系列中的一篇,JVM是多数开发人员视为理所当然的Java功能和性 ...

  9. 如何在canvas中画出一个太极图

    先放一个效果图: 代码如下 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /&g ...

  10. lastlog---显示系统中所有用户最近一次登录信息。

    lastlog命令用于显示系统中所有用户最近一次登录信息. lastlog文件在每次有用户登录时被查询.可以使用lastlog命令检查某特定用户上次登录的时间,并格式化输出上次登录日志/var/log ...