BZOJ 3631: [JLOI2014]松鼠的新家 树上差分_LCA

BZOJ 3631: [JLOI2014]松鼠的新家 树上差分_LCA

Code:

#include
#define setIO(s) freopen(s".in","r",stdin) 
#define maxn 300001 
using namespace std;
int hd[maxn], to[maxn<<1], nex[maxn<<1], fa[maxn], siz[maxn], top[maxn], hson[maxn],len[maxn],arr[maxn],buck[maxn];     
int edges; 
int ans[maxn]; 
void add(int u,int v)
{
    nex[++edges]=hd[u], hd[u]=edges, to[edges]=v; 
}
void dfs1(int u,int ff)
{
    fa[u] = ff, siz[u] = 1, len[u] = len[ff] + 1; 
    for(int i=hd[u];i;i=nex[i])
    {
        int v=to[i];
        if(v==ff) continue; 
        dfs1(v,u); 
        siz[u] += siz[v]; 
        if(siz[v] > siz[hson[u]]) hson[u] = v; 
    }
}
void dfs2(int u,int tp)
{
    top[u]=tp;
    if(hson[u]) dfs2(hson[u], tp); 
    for(int i=hd[u];i;i=nex[i])
    {
        int v=to[i];
        if(v==fa[u] || v==hson[u]) continue; 
        dfs2(v, v); 
    }
}
int lca(int a,int b)
{
    while(top[a] ^ top[b]) len[top[a]] < len[top[b]] ? b = fa[top[b]] : a = fa[top[a]];       
    return len[a] > len[b] ? b : a; 
}
void dfs(int u)
{
    for(int i=hd[u];i;i=nex[i])
    {
        int v=to[i];
        if(v==fa[u]) continue; 
        dfs(v); 
        buck[u]+=buck[v];        
    }
}
int main()
{
    // setIO("input"); 
    int n; 
    scanf("%d",&n); 
    for(int i=1;i<=n;++i) scanf("%d",&arr[i]); 
    for(int i=1;i

  

posted @ 2019-06-06 00:24 EM-LGH 阅读( ...) 评论( ...) 编辑 收藏

你可能感兴趣的:(BZOJ 3631: [JLOI2014]松鼠的新家 树上差分_LCA)