bzoj 3011
传送门: http://www.lydsy.com/JudgeOnline/problem.php?id=3011
一想到这个第一反应是树形dp,然后10^18 (' ' ) 所以我直接搞了一个左偏树往上面不断合并(' ' ) 网上好像有人用的线段树维护区间(子树)最小值,不过我觉得我这个做法比较好写吧。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std; typedef long long ll;
const ll maxn = 210000; struct node {
ll val, size, dis, lazy;
node *l, *r;
}e[maxn * 8]; ll ne = 0; void swap(node *&a, node* &b) {
node* t = a; a = b, b = t;
} void test(node* x) {
if(x) {
cout << x-> val <<" "<< x-> size << endl;
test(x-> l), test(x-> r);
}
} void update(node *x) {
x-> size = 1;
if(x-> l) x-> size += x-> l-> size;
if(x-> r) x-> size += x-> r-> size;
} void pushdown(node* x) {
if(!x || !x-> lazy) return;
if(x-> l) x-> l-> val += x-> lazy, x-> l-> lazy += x-> lazy;
if(x-> r) x-> r-> val += x-> lazy, x-> r-> lazy += x-> lazy;
x-> lazy = 0;
} node* merge(node* a, node *b) {
if(!a) return b;
if(!b) return a;
pushdown(a), pushdown(b);
if(a-> val < b-> val) swap(a, b);
a-> r = merge(a-> r, b);
ll dl = a-> l ? a-> l-> dis : -1;
ll dr = a-> r ? a-> r-> dis : -1;
if(dl < dr) swap(a-> l, a-> r);
a-> dis = a-> r ? a-> r-> dis + 1 : 0;
update(a);
return a;
} void pop(node* &x) {
pushdown(x);
x = merge(x-> l, x-> r);
} ll n, m; struct edge {
ll t, d;
edge* next;
}se[maxn * 2], *head[maxn]; ll oe = 0; void addedge(ll f, ll t, ll d) {
se[oe].t = t, se[oe].d = d, se[oe].next = head[f], head[f] = se + oe ++;
} ll int_get() {
ll x = 0; char c = (char)getchar(); bool f = 0;
while(!isdigit(c)) {
if(c == '-') f = 1;
c = (char)getchar();
}
while(isdigit(c)) {
x = x * 10 + (int)(c - '0');
c = (char)getchar();
}
if(f) x= -x;
return x;
} void read() {
n = int_get(); m = int_get();
for(ll i = 2; i <= n; ++ i) {
ll f, w;
f = int_get(), w = int_get();
addedge(i, f, w), addedge(f, i, w);
}
} ll s[maxn], top = 0; node* rt[maxn];
ll h[maxn]; void dfs(ll x, ll fa) {
h[x] = h[fa] + 1;
for(edge* p = head[x]; p; p = p-> next) {
if(p-> t != fa) dfs(p-> t, x);
}
s[++ top] = x;
} ll ans[maxn]; void sov() {
dfs(1, 0);
for(ll j = 1; j <= top; ++ j) {
ll i = s[j];
rt[i] = e + ne ++; rt[i]-> dis = 0; rt[i]-> val = 0; rt[i]-> size = 1;
for(edge* p = head[i]; p; p = p-> next) {
if(h[p-> t] > h[i]) {
if(rt[p-> t]) rt[p-> t]-> lazy += p-> d, rt[p-> t]-> val += p-> d;
rt[i] = merge(rt[i], rt[p-> t]);
}
}
while(rt[i] && rt[i]-> val > m) pop(rt[i]);
ans[i] += rt[i] ? rt[i]-> size : 0;
}
for(ll i = 1; i <= n; ++ i) printf("%lld\n", ans[i]);
} int main() {
//freopen("test.in", "r", stdin);
//freopen("test.out", "w", stdout);
read(), sov();
return 0;
}
bzoj 3011的更多相关文章
- BZOJ 3011: [Usaco2012 Dec]Running Away From the Barn( dfs序 + 主席树 )
子树操作, dfs序即可.然后计算<=L就直接在可持久化线段树上查询 -------------------------------------------------------------- ...
- BZOJ 2127: happiness [最小割]
2127: happiness Time Limit: 51 Sec Memory Limit: 259 MBSubmit: 1815 Solved: 878[Submit][Status][Di ...
- BZOJ 3275: Number
3275: Number Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 874 Solved: 371[Submit][Status][Discus ...
- BZOJ 2879: [Noi2012]美食节
2879: [Noi2012]美食节 Time Limit: 10 Sec Memory Limit: 512 MBSubmit: 1834 Solved: 969[Submit][Status] ...
- bzoj 4610 Ceiling Functi
bzoj 4610 Ceiling Functi Description bzoj上的描述有问题 给出\(n\)个长度为\(k\)的数列,将每个数列构成一个二叉搜索树,问有多少颗形态不同的树. Inp ...
- BZOJ 题目整理
bzoj 500题纪念 总结一发题目吧,挑几道题整理一下,(方便拖板子) 1039:每条线段与前一条线段之间的长度的比例和夹角不会因平移.旋转.放缩而改变,所以将每条轨迹改为比例和夹角的序列,复制一份 ...
- 【sdoi2013】森林 BZOJ 3123
Input 第一行包含一个正整数testcase,表示当前测试数据的测试点编号.保证1≤testcase≤20. 第二行包含三个整数N,M,T,分别表示节点数.初始边数.操作数.第三行包含N个非负整数 ...
- 【清华集训】楼房重建 BZOJ 2957
Description 小A的楼房外有一大片施工工地,工地上有N栋待建的楼房.每天,这片工地上的房子拆了又建.建了又拆.他经常无聊地看着窗外发呆,数自己能够看到多少栋房子. 为了简化问题,我们考虑这些 ...
- 【splay】文艺平衡树 BZOJ 3223
Description 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区间是[2,4]的话,结果是5 2 3 ...
随机推荐
- UIView的 形变属性transform
// ViewController.m // 形变属性transform // // Created by LiuWei on 2018/4/23. // Copyright © 2018年 xxx. ...
- mybatis用distinct进行查询的问题
一:mybatis进行distinct进行查询的时候,数据库中可能有值为null的. 如果直接这样写,这个null的都给计算出来了. select DISTINCT b.b_city from bui ...
- paper 152: face pose synthesis
先阅读一下几位大神总结的关于姿态合成方面的博客. Head Pose Estimation Using AAM and POSIT http://blog.csdn.net/lliming2006/a ...
- 《Spring Cloud构建微服务架构》系列博文示例
SpringCloud-Learning 源码下载地址:http://download.csdn.net/detail/k21325/9650968 本项目内容为Spring Cloud教 ...
- jerry
jerry 题目描述 众所周知,Jerry 鼠是一只非常聪明的老鼠. Jerry 聪明到它可以计算64 位有符号整形数字的加减法. 现在,Jerry 写下了一个只由非负整数和加减号组成的算式.它想给这 ...
- 深入浅出HashMap
/** *@ author ViVi *@date 2014-6-11 */ Hashmap是一种非常常用的.应用广泛的数据类型,最近研究到相关的内容,就正好复习一下.希望通过仪器讨论.共同提高~ 1 ...
- vue搭建项目步骤(二)
上篇是搭建Vue项目的基本,接下来是继续对做项目的记录.顺序并不一定. 五.对页面入口文件的修改: 众所周知,main.js 程序入口文件,加载各种公共组件,App.Vue为 页面入口文件.但是有时候 ...
- 0.tensorflow——常用说明
1.tf tf.placeholder(tf.float32,shape=[None,inputSize])#类似于一个float32的声明 tf.reduce_mean()#求均值,可以是不同维度 ...
- 14. Jmeter-配置元件一
jmeter-配置元件介绍与使用 CSV 数据文件设置 HTTP信息头管理器 HTTP Cookie 管理器 HTTP Cache Manager HTTP请求默认值 计数器 DNS Cache Ma ...
- T1218:取石子游戏
[题目描述] 有两堆石子,两个人轮流去取.每次取的时候,只能从较多的那堆石子里取,并且取的数目必须是较少的那堆石子数目的整数倍,最后谁能够把一堆石子取空谁就算赢. 比如初始的时候两堆石子的数目是25和 ...