Codeforces #778C: Peterson Polyglot 题解

考虑启发式合并
对于每个点,我们考虑删去它以后,它的子树们合并之后能减少多少个点,每次把小子树向大子树合并即可,这个点的贡献加到它所在的深度中
最后统计一波答案即可
下面简证为什么这样启发式合并的复杂度是 O(nlogn) O ( n l o g n )
我们考虑某一个节点u,他可能会在若干次合并操作中被用到,具体来说,它会在它的若干祖先中以不同的深度被用到
假设节点u在若干子树中深度分别为 d1,d2...dt(d1>d2>...>dt) d 1 , d 2... d t ( d 1 > d 2 > . . . > d t ) ,那么由小子树向大子树合并的性质可知 size(tree1)<size(tree2)/2 s i z e ( t r e e 1 ) < s i z e ( t r e e 2 ) / 2 size(tree2)<size(tree3)/2 s i z e ( t r e e 2 ) < s i z e ( t r e e 3 ) / 2 ,以此类推,每次的size都至少 ×2 × 2 ,那么节点u最多只会在 logn l o g n 次合并中出现并对答案造成影响,QED

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <cstdlib>
#include <utility>
#include <cctype>
#include <algorithm>
#include <bitset>
#include <set>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <cmath>
#define LL long long
#define LB long double
#define x first
#define y second
#define Pair pair<int,int>
#define pb push_back
#define pf push_front
#define mp make_pair
#define LOWBIT(x) x & (-x)
using namespace std;

const int MOD=1e9+7;
const LL LINF=2e16;
const int INF=2e9;
const int magic=348;
const double eps=1e-10;
const double pi=3.14159265;

inline int getint()
{
    char ch;int res;bool f;
    while (!isdigit(ch=getchar()) && ch!='-') {}
    if (ch=='-') f=false,res=0; else f=true,res=ch-'0';
    while (isdigit(ch=getchar())) res=res*10+ch-'0';
    return f?res:-res;
}

int n;

struct node
{
    int next[30];
}trie[300048];

int depth[300048],sz[300048],son[300048];
int ans[300048];

inline void dfs(int cur)
{
    sz[cur]=1;son[cur]=0;int i,to;
    for (i=1;i<=26;i++)
        if (trie[cur].next[i])
        {
            to=trie[cur].next[i];
            depth[to]=depth[cur]+1;
            dfs(to);
            sz[cur]+=sz[to];
            if (!son[cur] || sz[to]>sz[son[cur]]) son[cur]=to;
        }
}

Pair used[300048];int utot=0;
inline void merge(int cur,int root,int ind)
{
    int i,to1,to2;
    for (i=1;i<=26;i++)
    {
        to1=trie[cur].next[i];
        if (to1)
        {
            to2=trie[root].next[i];
            if (to2)
            {
                ans[ind]++;
                merge(to1,to2,ind);
            }
            else
            {
                trie[root].next[i]=to1;
                used[++utot]=mp(root,i);
            }
        }
    }
}

inline void Dfs(int cur)
{
    int i,to;
    for (i=1;i<=26;i++)
        if (trie[cur].next[i]) Dfs(trie[cur].next[i]),ans[depth[cur]]++;
    utot=0;
    for (i=1;i<=26;i++)
        if (trie[cur].next[i] && trie[cur].next[i]!=son[cur]) merge(trie[cur].next[i],son[cur],depth[cur]);
    for (i=1;i<=utot;i++)
        trie[used[i].x].next[used[i].y]=0;
}

int main ()
{
    int i,x,y;string ch;
    n=getint();
    for (i=1;i<=n-1;i++)
    {
        x=getint();y=getint();cin>>ch;
        trie[x].next[ch[0]-'a'+1]=y;
    }
    depth[1]=1;dfs(1);
    Dfs(1);
    int max_depth=1;for (i=1;i<=n;i++) max_depth=max(max_depth,depth[i]);
    int Ans=INF,ansind;
    for (i=1;i<=max_depth;i++)
        if (n-ans[i]<Ans) Ans=n-ans[i],ansind=i;
    printf("%d\n%d\n",Ans,ansind);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值