博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #200 (Div. 1)D. Water Tree
阅读量:5290 次
发布时间:2019-06-14

本文共 1001 字,大约阅读时间需要 3 分钟。

简单的树链剖分+线段树

#include
using namespace std;#define pb push_back#define lson root<<1,l,midd#define rson root<<1|1,midd+1,rconst int M=5e5+5;vector
g[M];int tree[M<<2],lazy[M<<2],top[M],son[M],fa[M],sz[M],dfn[M],to[M],deep[M],cnt,n;void dfs1(int u,int f){ sz[u]=1; fa[u]=f; deep[u]=deep[f]+1; for(int i=0;i
sz[son[u]]) son[u]=v; } }}void dfs2(int u,int t){ dfn[u]=++cnt; to[cnt]=u; top[u]=t; if(!son[u]) return ; dfs2(son[u],t); for(int i=0;i
>1; if(L<=midd) update(L,R,w,lson); if(R>midd) update(L,R,w,rson);}void Update(int u,int v,int w){ while(top[u]!=top[v]){ if(deep[top[u]]
>1; if(pos<=midd) return query(pos,lson); if(pos>midd) return query(pos,rson);}int main(){ scanf("%d",&n); for(int i=1;i
View Code

 

转载于:https://www.cnblogs.com/starve/p/11433107.html

你可能感兴趣的文章
Hibernate : Disabling contextual LOB creation as createClob() method threw error
查看>>
【bzoj4872】[Shoi2017]分手是祝愿 期望dp
查看>>
字符串元转分
查看>>
thinkphp 防sql注入
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
bzoj3110: [Zjoi2013]K大数查询 【树套树,标记永久化】
查看>>
[原创]Java 的传值小例子
查看>>
【MySQL学习】安装和配置 服务无法启动 没有报告任何错误
查看>>
C# 修饰符
查看>>
JavaScript启示录
查看>>
我需要什么样的浏览器?
查看>>
取textaera里的值
查看>>
java设计模式1--工厂方法模式(Factory Method)
查看>>