hdu 4918
第一道树的点分治。
感谢:
http://blog.csdn.net/u013368721/article/details/40887575
首先,找出原图的重心(最大子树大小最小的点(如果作为根)),去掉它后原图就分成了若干的森林,再在对应的森林中找出重心,递归这个过程(只有一个点时返回)。
这样,我们就可以根据重心的所属关系,建立出一棵树,显然原图的重心就是这颗树的重心,每个重心对应一些点(就是去掉该重心前,该重心联通块中的所有点)。
容易看出,因为每次选的是重心,所以树每次至少会分成两块(最坏情况),考虑我们根据重心所属关系建立出的树,最多有O(logn)层,每层找重心总的复杂度是O(n)(因为每层重心对应的点是O(n)级别的),所以建立这个关系是O(nlogn)的复杂度。
应前辈的称呼,我们就叫建立出的这颗很多重心的树为重心树。
对于这道题,我们可以给重心树的每个节点建立一个树状数组,树状数组下标为到重心的距离,值为点的权值,将重心对应的点都放到这个树状数组中(因为最大距离就是该重心对应的点数-1,所以树状数组的大小就设成该重心对应的点数),因为一层对应的所有重心对应的点数最多为O(n),所以总共占用的空间为O(nlogn)。然后还要根据这个重心的不同子重心分开记录一下这个东西,用于去重。
#include <cstdio>
#include <vector>
#include <map>
#define N 100010
using namespace std; struct Stat {
int r, d, s;
Stat( int r, int d, int s ):r(r),d(d),s(s){}
};
struct Bit {
int n;
vector<int> vv;
void init( int n ) {
this->n = n;
vv.resize( n+ );
for( int t=; t<=n; t++ ) vv[t] = ;
}
void modify( int pos, int delta ) {
pos++;
for( int i=pos; i<=n; i+=i&-i )
vv[i]+=delta;
}
int query( int pos ) {
int rt = ;
pos++;
if( pos>n ) pos=n;
for( int i=pos; i; i-=i&-i )
rt += vv[i];
return rt;
}
}; int n, m;
vector<int> g[N];
vector<Stat> st[N];
map<int,Bit > bit[N];
int ww[N];
int vis[N], siz[N], anc[N], bac[N], dis[N];
int qu[N], beg, tail; void init( int n ) {
for( int i=; i<=n; i++ ) {
g[i].clear();
st[i].clear();
bit[i].clear();
vis[i] = false;
}
}
void build( int root ) {
qu[beg=tail=] = root;
anc[root] = root;
siz[root] = bac[root] = ;
while( tail>=beg ) {
int u=qu[beg++];
for( int t=; t<g[u].size(); t++ ) {
int v=g[u][t];
if( v==anc[u] || vis[v] ) continue;
qu[++tail] = v;
anc[v] = u;
siz[v] = bac[v] = ;
}
}
for( int i=tail; i; i-- ) {
int v=qu[i];
int u=anc[v];
siz[v]++;
siz[u]+=siz[v];
if( siz[v]>bac[u] ) bac[u]=siz[v];
}
for( int i=; i<=tail; i++ ) {
int u = qu[i];
if( siz[root]-siz[u]>bac[u] ) bac[u]=siz[root]-siz[u];
}
for( int i=; i<=tail; i++ ) {
int u = qu[i];
if( bac[u]<bac[root] ) root=u;
}
//---------------- found the core -------------------//
bit[root][].init( tail+ );
bit[root][].modify( , ww[root] );
st[root].push_back( Stat(root,,) );
vis[root] = true; anc[root] = root;
for( int t=; t<g[root].size(); t++ ) {
int sr = g[root][t];
if( vis[sr] ) continue;
qu[beg=tail=] = sr;
dis[sr] = ;
anc[sr] = root;
while( tail>=beg ) {
int u=qu[beg++];
for( int t=; t<g[u].size(); t++ ) {
int v=g[u][t];
if( vis[v] || v==anc[u] ) continue;
qu[++tail] = v;
dis[v] = dis[u]+;
anc[v] = u;
}
}
bit[root][sr].init( tail+ );
for( int i=; i<=tail; i++ ) {
int u=qu[i];
bit[root][].modify( dis[u], ww[u] );
bit[root][sr].modify( dis[u], ww[u] );
st[u].push_back( Stat(root,dis[u],sr) );
}
}
for( int t=; t<g[root].size(); t++ ) {
int v=g[root][t];
if( vis[v] ) continue;
build(g[root][t]);
}
}
void modify( int u, int d ) {
for( int t=; t<st[u].size(); t++ ) {
Stat &s = st[u][t];
bit[s.r][].modify( s.d, d );
if( s.s ) bit[s.r][s.s].modify( s.d, d );
}
}
int query( int u, int d ) {
int rt = ;
for( int t=; t<st[u].size(); t++ ) {
Stat &s = st[u][t];
if( d<s.d ) continue;
int v = bit[s.r][].query( d-s.d );
rt += v;
if( s.s ) {
v = bit[s.r][s.s].query( d-s.d );
rt -= v;
}
}
return rt;
} int main() {
while() {
if( scanf( "%d%d", &n, &m )!= ) return ;
init(n);
for( int i=; i<=n; i++ )
scanf( "%d", ww+i );
for( int i=,u,v; i<n; i++ ) {
scanf( "%d%d", &u, &v );
g[u].push_back( v );
g[v].push_back( u );
}
build();
for( int i=; i<=m; i++ ) {
char ch[];
int u, d;
scanf( "%s%d%d", ch, &u, &d );
if( ch[]=='!' ) {
modify( u, d-ww[u] );
ww[u] = d;
} else {
printf( "%d\n", query(u,d) );
}
}
}
}
hdu 4918的更多相关文章
- HDU 4918 Query on the subtree(动态点分治+树状数组)
题意 给定一棵 \(n\) 个节点的树,每个节点有点权.完成 \(q\) 个操作--操作分两种:修改点 \(x\) 的点权.查询与 \(x\) 距离小于等于 \(d\) 的权值总和. \(1 \leq ...
- 胡小兔的OI日志3 完结版
胡小兔的 OI 日志 3 (2017.9.1 ~ 2017.10.11) 标签: 日记 查看最新 2017-09-02 51nod 1378 夹克老爷的愤怒 | 树形DP 夹克老爷逢三抽一之后,由于采 ...
- hdu 4915 Parenthese sequence--2014 Multi-University Training Contest 5
主题链接:http://acm.hdu.edu.cn/showproblem.php?pid=4915 Parenthese sequence Time Limit: 2000/1000 MS (Ja ...
- HDOJ 2111. Saving HDU 贪心 结构体排序
Saving HDU Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total ...
- 【HDU 3037】Saving Beans Lucas定理模板
http://acm.hdu.edu.cn/showproblem.php?pid=3037 Lucas定理模板. 现在才写,noip滚粗前兆QAQ #include<cstdio> #i ...
- hdu 4859 海岸线 Bestcoder Round 1
http://acm.hdu.edu.cn/showproblem.php?pid=4859 题目大意: 在一个矩形周围都是海,这个矩形中有陆地,深海和浅海.浅海是可以填成陆地的. 求最多有多少条方格 ...
- HDU 4569 Special equations(取模)
Special equations Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u S ...
- HDU 4006The kth great number(K大数 +小顶堆)
The kth great number Time Limit:1000MS Memory Limit:65768KB 64bit IO Format:%I64d & %I64 ...
- HDU 1796How many integers can you find(容斥原理)
How many integers can you find Time Limit:5000MS Memory Limit:32768KB 64bit IO Format:%I64d ...
随机推荐
- 大图片上传(ImageIO,注意有的图片不能上传时因为他是tiff格式)
一下是必要的: 1.enctype="multipart/form-data" 2. //不要使用myeclipse自动生成的get.set方法(struts2中的用法) publ ...
- sqlite3在Linux下的安装和使用
自我补充:ubuntu在线安装sqlite3数据库的方法: 系统平台:ubuntu12.04 在ubuntu里面直接使用命令:sudo apt-get install sqlite3 ,出现: ...
- 005_linux下logrotate 配置和理解
对于Linux 的系统安全来说,日志文件是极其重要的工具.系统管理员可以使用logrotate 程序用来管理系统中的最新的事件,对于Linux 的系统安全来说,日志文件是极其重要的工具.系统管理员可以 ...
- salt-api起不来:ImportError('No module named wsgiserver2',)
问题:启动salt-api时没有报错但是没有端口,查看/var/log/salt/api发现如下报错: 解决方法: 下载wsgiserver2文件,放到/usr/lib64/python2.7/sit ...
- **[权限控制] 利用CI钩子实现权限认证
http://codeigniter.org.cn/forums/thread-10877-1-1.html 一直没找到CI的权限认证扩展,以前好像找到过一个老外的扩展,不过不怎么好用,现在记不清了, ...
- Python全栈开发之6、正则表达式
转载请注明出处http://www.cnblogs.com/Wxtrkbc/p/5498162.html 正则表达式使用单个字符串来描述.匹配一系列符合某个句法规则的字符串,在文本处理方面功能非常强大 ...
- poj1950 Dessert(DFS)
题目链接 http://poj.org/problem?id=1950 题意 输入一个整数n(3<=n<=15),将1,2,..n顺序排列,在数字中间插入'+','-','.',这样会产生 ...
- 不通过注册表使用ActiveX对象
为了弄清楚COM库的运行原理,特意做了这个实验: #include "stdafx.h" #include "objbase.h" #include " ...
- Python上下文管理器(context manager)
上下文管理器(context manager)是Python2.5开始支持的一种语法,用于规定某个对象的使用范围.一旦进入或者离开该使用范围,会有特殊操作被调用 (比如为对象分配或者释放内存).它的语 ...
- SpringBoot整合Shiro实现基于角色的权限访问控制(RBAC)系统简单设计从零搭建
SpringBoot整合Shiro实现基于角色的权限访问控制(RBAC)系统简单设计从零搭建 技术栈 : SpringBoot + shiro + jpa + freemark ,因为篇幅原因,这里只 ...