[USACO12DEC]逃跑的BarnRunning Away From…

题目描述

It's milking time at Farmer John's farm, but the cows have all run away! Farmer John needs to round them all up, and needs your help in the search.

FJ's farm is a series of N (1 <= N <= 200,000) pastures numbered 1...N connected by N - 1 bidirectional paths. The barn is located at pasture 1, and it is possible to reach any pasture from the barn.

FJ's cows were in their pastures this morning, but who knows where they ran to by now. FJ does know that the cows only run away from the barn, and they are too lazy to run a distance of more than L. For every pasture, FJ wants to know how many different pastures cows starting in that pasture could have ended up in.

Note: 64-bit integers (int64 in Pascal, long long in C/C++ and long in Java) are needed to store the distance values.

给出以1号点为根的一棵有根树,问每个点的子树中与它距离小于等于l的点有多少个。

输入输出格式

输入格式:

  • Line 1: 2 integers, N and L (1 <= N <= 200,000, 1 <= L <= 10^18)

  • Lines 2..N: The ith line contains two integers p_i and l_i. p_i (1 <= p_i < i) is the first pasture on the shortest path between pasture i and the barn, and l_i (1 <= l_i <= 10^12) is the length of that path.

输出格式:

  • Lines 1..N: One number per line, the number on line i is the number pastures that can be reached from pasture i by taking roads that lead strictly farther away from the barn (pasture 1) whose total length does not exceed L.

输入输出样例

输入样例#1:

4 5

1 4

2 3

1 5

输出样例#1:

3

2

1

1

说明

Cows from pasture 1 can hide at pastures 1, 2, and 4.

Cows from pasture 2 can hide at pastures 2 and 3.

Pasture 3 and 4 are as far from the barn as possible, and the cows can hide there.

Solution

这道题做法也是千千万万...倍增+差分/左偏树/主席树/...

蒟蒻我写的主席树

左偏树只写过一道题,所以对这道题思路不是很熟,稍微讲一下倍增+差分的思路吧,我们要找到一个点的子树中距离小于等于L的节点的个数,最朴素的做法就是暴力查找,找到一个打标记,但是这样的优化空间很大,寻找我们可以用倍增优化,标记可以差分,时间复杂度\(O(nlogn)\)


下面是主席树的思路,我们要寻找一个节点\(u\)子树中距离小于等于L的节点\(v\)的个数,即需要满足这样的条件:\(dis[v]-dis[u]<=L\to dis[u]>=dis[v]+L\)

问题就转化成了求子树内小于一个值的个数,主席树啊

对权值建树....

注意:dis[v]+L不一定在原序列中出现过,所以我们用upper_bound,找的时候就变成严格<才统计答案,最后为了一定能找到,我们在序列的末尾加一个inf

Code

#include<bits/stdc++.h>
#define mid ((l+r)>>1)
#define in(i) (i=read())
#define lol long long
using namespace std; const lol N=2e5+10,inf=2e15; lol read()
{
lol ans=0,f=1; char i=getchar();
while(i<'0' || i>'9') {if(i=='-') f=-1; i=getchar();}
while(i>='0' && i<='9') ans=(ans<<1)+(ans<<3)+i-'0',i=getchar();
return ans*f;
} lol n,m,cur,tot,dfscnt,L;
lol head[N],nex[N<<1],to[N<<1],w[N<<1];
lol a[N],b[N],inc[N],ouc[N],rt[N]; struct Chair_Tree {
lol l,r,v;
}t[N<<5]; void add(lol a,lol b,lol c) {
to[++cur]=b,nex[cur]=head[a],w[cur]=c,head[a]=cur;
to[++cur]=a,nex[cur]=head[b],w[cur]=c,head[b]=cur;
} void insert(lol &u,lol l,lol r,lol pre,lol p) {
t[u=++tot]=t[pre], t[u].v++;
if(l==r) return;
if(p<=mid) insert(t[u].l,l,mid,t[pre].l,p);
else insert(t[u].r,mid+1,r,t[pre].r,p);
} lol query(lol u,lol v,lol l,lol r,lol k) {
if(r<k) return t[v].v-t[u].v;
if(l>=k) return 0;
if(k<=mid) return query(t[u].l,t[v].l,l,mid,k);
else return query(t[u].r,t[v].r,mid+1,r,k)+t[t[v].l].v-t[t[u].l].v;
} void init(lol u,lol fa,lol now) {
inc[u]=++dfscnt, a[++m]=b[m]=now;
for (lol i=head[u];i;i=nex[i]) {
if(to[i]==fa) continue;
init(to[i],u,now+w[i]);
}ouc[u]=dfscnt;
} int main()
{
in(n), in(L);
for (lol i=2,f,c;i<=n;i++)
in(f), in(c), add(i,f,c);
init(1,0,0);
sort(b+1,b+1+m); m=unique(b+1,b+1+m)-b-1;
for (lol i=1;i<=n;i++) {
lol p=lower_bound(b+1,b+1+m,a[i])-b;
insert(rt[i],1,m,rt[i-1],p);
}
b[m+1]=inf;
for (lol i=1,ans;i<=n;i++) {
lol k=upper_bound(b+1,b+2+m,a[inc[i]]+L)-b;
ans=query(rt[inc[i]-1],rt[ouc[i]],1,m,k);
printf("%lld\n",ans);
}
}

[USACO12DEC] 逃跑的BarnRunning Away From…(主席树)的更多相关文章

  1. luoguP3066 [USACO12DEC]逃跑的BarnRunning

    luoguP3066 [USACO12DEC]逃跑的BarnRunning 题目大意 给定一棵n个节点的树和参数L,查询每个节点子树中到达该节点距离<=L的数量(包括该节点) 偏模板的主席树 P ...

  2. [USACO12DEC]逃跑的BarnRunning Away From…

    题意 给出以1号点为根的一棵有根树,问每个点的子树中与它距离小于等于l的点有多少个 题解 似乎有好多种做法啊……然而蒟蒻只会打打主席树的板子…… 调了一个上午一直WA……狠下心来重打一遍居然直接一遍过 ...

  3. [Luogu3066][USACO12DEC]逃跑的BarnRunning Away From…

    题面 题目描述 给出以1号点为根的一棵有根树,问每个点的子树中与它距离小于等于l的点有多少个. 输入格式: Line 1: 2 integers, N and L (1 <= N <= 2 ...

  4. P3066 [USACO12DEC]逃跑的BarnRunning Away From

    目录 题目 思路 错误&&注意 代码 题目 luoguP3066 思路 虽说这个题目有多种做法,但 左偏树算法: 我们发现这个合并的时候并不好合并,因为存的值不是固定的 那我们是不是可 ...

  5. Luogu 3066 [USACO12DEC]逃跑的BarnRunning Away From…

    好像是某CF的题,不记得…… 很套路的题,但是觉得可以做一下笔记. 倍增 + 差分. 有一个比较简单的思路就是每一个点$x$向上走一走,直到走到一个点$y$使总路程恰好不超过超过了$L$,然后把$(x ...

  6. 洛谷P3066 [USACO12DEC]逃跑的BarnRunning Away From…

    题面链接 一句话题意:给出以1号点为根的一棵有根树,问每个点的子树中与它距离小于等于l的点有多少个. 我:似乎并不好做啊...看了题解后大雾... sol:考虑树上差分,对于一个点,在他那个位置++, ...

  7. P3066 [USACO12DEC]逃跑的BarnRunning Away From (树上二分)

    题意 给出以1号点为根的一棵有根树,问每个点的子树中与它距离小于等于l的点有多少个. 树上二分.这个做法还是基于树上差分的,也就是对于每一个点uu,我们要找到它向上跳LL的长度最高能够跳到的祖先.(当 ...

  8. P3066 [USACO12DEC]逃跑的BarnRunning Away From… 树上差分_树上倍增

    code: #include <cstdio> using namespace std; #define ll long long const int N=200005; int n,fa ...

  9. 洛谷$P$3066 逃跑的$BarnRunning\ Away\ From…$ $[USACO12DEC]$ 主席树

    正解:主席树 解题报告: 传送门! 1551做$dp$实在是做不下去了,,,于是来水点儿别的题$QAQ$ 然后这题,挺纸老虎的我$jio$得,,,看起来很难的样子然后仔细想下之后发现依然是个板子呢,, ...

随机推荐

  1. fail-fast 机制 思考

    HashMap的迭代器(Iterator)是fail-fast迭代器,而Hashtable的enumerator迭代器不是fail-fast的. Iterator支持fail-fast机制,而Enum ...

  2. 【视频编解码·学习笔记】4. H.264的码流封装格式 & 提取NAL有效数据

    一.码流封装格式简单介绍: H.264的语法元素进行编码后,生成的输出数据都封装为NAL Unit进行传递,多个NAL Unit的数据组合在一起形成总的输出码流.对于不同的应用场景,NAL规定了一种通 ...

  3. MSCOCO - COCO API 的安装

    在 Windows 下安装 COCO API 的方法. 使用 pip 命令进行安装: pip install git+https://github.com/philferriere/cocoapi.g ...

  4. sql server block如何查询并kill

    本帖提供两种做法,可避免在 SQL Server 事务锁定时产生的不正常或长时间阻塞,让用户和程序也无限期等待,甚至引起 connection pooling 连接数超过容量. 所谓的「阻塞」,是指当 ...

  5. Python基础知识-05-数据类型总结字典

    python其他知识目录 1.一道题,选择商品的序号.程序员和用户各自面对的序号起始值 如有变量 googs = ['汽车','飞机','火箭'] 提示用户可供选择的商品: 0,汽车1,飞机2,火箭用 ...

  6. ES6的新特性(1)——ES6 的概述

    ES6 的概述 首先,感谢马伦老师的ES6新特性的教程. ECMAScript 和 JavaScript 的关系是 ECMAScript 和 JavaScript 的关系是,前者是后者的规格,后者是前 ...

  7. DP---基本思想 具体实现 经典题目 POJ1160 POJ1037

    POJ1160, post office.动态规划的经典题目.呃,又是经典题目,DP部分的经典题目怎就这么多.木有办法,事实就这样. 求:在村庄内建邮局,要使村庄到邮局的距离和最小. 设有m个村庄,分 ...

  8. sql高级主题资料(网络复制)

    SQL Server 常用高级语法笔记   自从用了EF后很少写sql和存储过程了,今天需要写个比较复杂的报告,翻出了之前的笔记做参考,感觉这个笔记还是很有用的,因此发出来和大家分享. 1.case. ...

  9. 单机安装 consul ui 对外提供服务

    Consul 安装启动ui,外网无法访问,应为Consul 默认绑定127.0.0.1 ,所以外网无法访问. 通过设置 -client 参数来设置     consul agent -server - ...

  10. yum 安装php环境

    centos下安装php环境 | 浏览:3831 | 更新:2014-11-04 17:01 1 2 3 分步阅读 在网上看了很多,很多都不能用,所以就把能用的实践下,过程记录下,方便自己和网友以后查 ...