codeforces 600E Lomsat gelral Dsu on tree

https://codeforces.com/problemset/problem/600/E
You are given a rooted tree with root in vertex 1. Each vertex is coloured in some colour.

Let’s call colour c dominating in the subtree of vertex v if there are no other colours that appear in the subtree of vertex v more times than colour c. So it’s possible that two or more colours will be dominating in the subtree of some vertex.

The subtree of vertex v is the vertex v and all other vertices that contains vertex v in each path to the root.

For each vertex v find the sum of all dominating colours in the subtree of vertex v.

Input
The first line contains integer n (1 ≤ n ≤ 105) — the number of vertices in the tree.

The second line contains n integers ci (1 ≤ ci ≤ n), ci — the colour of the i-th vertex.

Each of the next n - 1 lines contains two integers xj, yj (1 ≤ xj, yj ≤ n) — the edge of the tree. The first vertex is the root of the tree.

Output
Print n integers — the sums of dominating colours for each vertex.

Examples
Input
4
1 2 3 4
1 2
2 3
2 4
Output
10 9 3 4
Input
15
1 2 3 1 2 3 3 1 1 3 2 2 1 2 3
1 2
1 3
1 4
1 14
1 15
2 5
2 6
2 7
3 8
3 9
3 10
4 11
4 12
4 13
Output
6 5 4 3 2 3 3 1 1 3 2 2 1 2 3

题目大意:求以一棵树的每个节点为根节点的子树中,出现次数最多的颜色的编号之和。
思路:Dsu on tree模板题,很巧妙的利用了树链剖分的思想,相关介绍请戳

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

const int maxn=1e5+5;

struct Edge
{
    int to,nxt;
}edge[maxn<<1];

int head[maxn],siz[maxn],son[maxn],color[maxn],cnt[maxn];
ll sum[maxn],ans;
int n,tot,Son,maxcnt;

inline void addedge(int u,int v)
{
    edge[++tot].to=v,edge[tot].nxt=head[u],head[u]=tot;
}

void dfs1(int u,int f)//轻重链剖分
{
    siz[u]=1;
    int v;
    for(int i=head[u];i;i=edge[i].nxt)
    {
        v=edge[i].to;
        if(v==f)
            continue;
        dfs1(v,u);
        siz[u]+=siz[v];
        if(siz[v]>siz[son[u]])
            son[u]=v;
    }
}

inline void modify(int u,int f,int val)//递归计算子树贡献
{
    cnt[color[u]]+=val;
    if(cnt[color[u]]>maxcnt)
        maxcnt=cnt[color[u]],ans=color[u];
    else if(cnt[color[u]]==maxcnt)
        ans+=color[u];
    int v;
    for(int i=head[u];i;i=edge[i].nxt)
    {
        v=edge[i].to;
        if(v==f||v==Son)
            continue;
        modify(v,u,val);
    }
}

void dfs2(int u,int f,bool tag)//tag 用来标记轻重儿子
{
    int v;
    for(int i=head[u];i;i=edge[i].nxt)
    {
        v=edge[i].to;
        if(v==f||v==son[u])
            continue;
        dfs2(v,u,0); //轻儿子
    }
    if(son[u])
        dfs2(son[u],u,1),Son=son[u]; //重儿子
    modify(u,f,1); //递归计算子树的贡献
    sum[u]=ans; //统计答案
    Son=0;
    if(!tag)//轻儿子要消除贡献
    {
        modify(u,f,-1);
        maxcnt=ans=0;
    }
}

int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        scanf("%d",&color[i]);
    int u,v;
    for(int i=1;i<n;i++)
    {
        scanf("%d %d",&u,&v);
        addedge(u,v),addedge(v,u);
    }
    dfs1(1,0);
    dfs2(1,0,0);
    for(int i=1;i<=n;i++)
        printf("%lld ",sum[i]);
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值