CF1009F Dominant Indices [线段树合并]

传送门

f[u][j]=\sum f[son][j-1], 听说可以长链剖分,但是不会啊!

因为我们要维护每个点子树为 dep 的个数,考虑线段树合并,将子树的dep信息合并到父亲

所以以dep为下标建立线段树,然后线段树维护区间最大值,也就是查dep出现次数最多的点


#include<bits/stdc++.h>
#define N 1000050
using namespace std;
int first[N], nxt[N<<1], to[N<<1], tot;
void add(int x, int y){
	nxt[++tot] = first[x], first[x] = tot, to[tot] = y;
}
int n, dep[N], ans[N], res;
int rt[N], Max[N * 22], ls[N * 22], rs[N * 22], id[N * 22];
void Pushup(int x){
	if(Max[ls[x]] >= Max[rs[x]]){ Max[x] = Max[ls[x]]; id[x] = id[ls[x]];}
	else{ Max[x] = Max[rs[x]]; id[x] = id[rs[x]];}
}
void Insert(int &x, int l, int r, int p){
	if(!x) x = ++res; 
	if(l == r) { Max[x]++; id[x] = l; return;}
	int mid = (l+r) >> 1;
	if(p <= mid) Insert(ls[x], l, mid, p);
	else Insert(rs[x], mid+1, r, p); Pushup(x);
} 
int Merge(int x, int y, int l, int r){
	if(!x || !y) return x + y;
	if(l == r){ Max[x] += Max[y]; id[x] = l; return x;}
	int mid = (l+r) >> 1;
	ls[x] = Merge(ls[x], ls[y], l, mid);
	rs[x] = Merge(rs[x], rs[y], mid+1, r);
	Pushup(x); return x; 
}
void dfs(int u, int fa){
	Insert(rt[u], 1, n, dep[u]);
	for(int i=first[u];i;i=nxt[i]){
		int t = to[i]; if(t == fa) continue;
		dep[t] = dep[u] + 1; dfs(t, u);
		rt[u] = Merge(rt[u], rt[t], 1, n);
	} ans[u] = id[rt[u]] - dep[u];
}
int main(){ 
	Max[0] = -1e9;
	scanf("%d", &n);
	for(int i=1; i<n; i++){
		int x, y; scanf("%d%d", &x, &y); 
		add(x, y); add(y, x);
	} dep[1] = 1; dfs(1, 0);
	for(int i=1; i<=n; i++) printf("%d\n", ans[i]);
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

FSYo

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值