bzoj3572[Hnoi2014]世界树

http://www.lydsy.com/JudgeOnline/problem.php?id=3572

首先我们先构建出虚树

然后在虚树上DP,求出虚树上每个点离最近的临时议事处在哪里

对于虚树上相邻的两个点$u$和$v$,他们连线上一定存在一个分界处,一边一定会去离$u$最近的临时议事处;另一边一定会去离$v$最近的临时议事处

然后就做完了

#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<fstream>
#include<algorithm>
#include<cstring>
#include<string>
#include<cmath>
#include<queue>
#include<stack>
#include<map>
#include<utility>
#include<set>
#include<bitset>
#include<vector>
#include<functional>
#include<deque>
#include<cctype>
#include<climits>
#include<complex>
#include<cassert>
//#include<bits/stdc++.h>适用于CF,UOJ,但不适用于poj

using namespace std;

typedef long long LL;
typedef double DB;
typedef pair<int,int> PII;
typedef pair<DB,DB> PDD;
typedef complex<DB> CP;
typedef vector<int> VI;

#define mmst(a,v) memset(a,v,sizeof(a))
#define mmcy(a,b) memcpy(a,b,sizeof(a))
#define fill(a,l,r,v) fill(a+l,a+r+1,v)
#define re(i,a,b)  for(i=(a);i<=(b);i++)
#define red(i,a,b) for(i=(a);i>=(b);i--)
#define fi first
#define se second
#define mp(a,b) make_pair(a,b)
#define pb(a) push_back(a)
#define SF scanf
#define PF printf
#define two(k) (1<<(k))
#define SZ(x) (int(x.size()))
#define all(x) (x).begin(),(x).end()
#define ire(i,v,x) for(i=0,v=i<SZ(x)?x[i]:0;i<SZ(x);v=x[++i])

template<class T>inline T sqr(T x){return x*x;}
template<class T>inline void upmin(T &t,T tmp){if(t>tmp)t=tmp;}
template<class T>inline void upmax(T &t,T tmp){if(t<tmp)t=tmp;}

inline int sgn(DB x){if(abs(x)<1e-9)return 0;return(x>0)?1:-1;}
const DB Pi=acos(-1.0);

int gint()
  {
        int res=0;bool neg=0;char z;
        for(z=getchar();z!=EOF && z!=‘-‘ && !isdigit(z);z=getchar());
        if(z==EOF)return 0;
        if(z==‘-‘){neg=1;z=getchar();}
        for(;z!=EOF && isdigit(z);res=res*10+z-‘0‘,z=getchar());
        return (neg)?-res:res;
    }
LL gll()
  {
      LL res=0;bool neg=0;char z;
        for(z=getchar();z!=EOF && z!=‘-‘ && !isdigit(z);z=getchar());
        if(z==EOF)return 0;
        if(z==‘-‘){neg=1;z=getchar();}
        for(;z!=EOF && isdigit(z);res=res*10+z-‘0‘,z=getchar());
        return (neg)?-res:res;
    }

const int maxn=300100;

int n;
VI e[maxn];

const int up=25;
int dep[maxn],jump[maxn][up+1];
int head,tail,que[maxn];
int sz[maxn],idx[maxn];
void  bfs()
  {
      int i,j;
      dep[que[head=tail=1]=1]=1;
      re(j,0,up)jump[1][j]=1;
      while(head<=tail)
        {
            int u=que[head++];
            re(i,0,SZ(e[u])-1)if(!dep[e[u][i]])
              {
                  int v=e[u][i];
                  dep[que[++tail]=v]=dep[u]+1;
                  jump[v][0]=u;
                  re(j,1,up)jump[v][j]=jump[jump[v][j-1]][j-1];
              }
        }
      red(i,tail,1)
        {
            int u=que[i];
            sz[u]=1;
            re(j,0,SZ(e[u])-1)if(dep[e[u][j]]>dep[u])sz[u]+=sz[e[u][j]];
        }
      idx[1]=1;
      re(i,1,tail)
        {
            int u=que[i],tmp=0;
            re(j,0,SZ(e[u])-1)if(dep[e[u][j]]>dep[u]){int v=e[u][j];idx[v]=idx[u]+tmp+1,tmp+=sz[v];}
        }
  }

int swim(int x,int H){for(int i=0;H;H>>=1,i++)if(H&1)x=jump[x][i];return x;}
int ask_lca(int x,int y)
  {
      if(dep[x]<dep[y])swap(x,y);
      x=swim(x,dep[x]-dep[y]);
      if(x==y)return x;
      int i;red(i,up,0)if(jump[x][i]!=jump[y][i])x=jump[x][i],y=jump[y][i];
      return jump[x][0];
  }

int m,h[maxn],h2[maxn];
int mark[maxn],ans[maxn];
VI to[maxn];
int ge,w[maxn];

bool cmp(int a,int b){return idx[a]<idx[b];}

int top,sta[maxn];
void addedge(int u,int v){to[u].pb(v);to[v].pb(u);}
void build()
  {
      int i;
      re(i,1,ge)to[w[i]].clear();
      sort(h+1,h+m+1,cmp);
      ge=0;
      sta[top=1]=1;
      re(i,2,m)
        {
            while(1)
              {
                  int lca=ask_lca(h[i],sta[top]);
                  if(lca==sta[top])break;
                  if(idx[lca]>idx[sta[top-1]])
                    {
                        w[++ge]=sta[top];
                        addedge(sta[top],lca);
                        sta[top]=lca;
                    }
                  else
                    {
                        addedge(sta[top],sta[top-1]);
                        w[++ge]=sta[top--];
                    }
              }
            sta[++top]=h[i];
        }
      while(top>=2)addedge(sta[top],sta[top-1]),w[++ge]=sta[top--];
      w[++ge]=sta[top--];
  }

const int inf=0x3f3f3f3f;
PII f[maxn];
int fa[maxn];
void solve()
  {
      int i,j;
      re(i,1,ge)fa[w[i]]=0,f[w[i]]=mark[w[i]]?mp(0,w[i]):mp(inf,0);
      que[head=tail=1]=1;
      while(head<=tail)
        {
            int u=que[head++];
            re(j,0,SZ(to[u])-1)if(to[u][j]!=fa[u])fa[que[++tail]=to[u][j]]=u;
        }
      red(i,tail,2)
        {
            int u=que[i],v=fa[u];
            upmin(f[v],mp(f[u].fi+dep[u]-dep[v],f[u].se));
        }
      re(i,2,tail)
        {
            int u=que[i],v=fa[u];
            upmin(f[u],mp(f[v].fi+dep[u]-dep[v],f[v].se));
        }
      re(i,1,tail)
        {
            int x=que[i],tmp=sz[x];
            re(j,0,SZ(to[x])-1)if(to[x][j]!=fa[x])
                  {
                      int y=to[x][j],z=swim(y,dep[y]-dep[x]-1);
                        tmp-=sz[z];
                    }
                ans[f[x].se]+=tmp;
        }
      re(i,2,tail)
        {
            int x=que[i],y=fa[x],dist=dep[x]-dep[y],z=swim(x,dist-1);
            if(f[x].se==f[y].se)
              ans[f[x].se]+=sz[z]-sz[x];
            else
              {
                  int d=(f[y].fi-f[x].fi+dist)/2.0;
                  if((f[y].fi-f[x].fi+dist)%2==0 && f[y].se<f[x].se)d--;
                  int u=swim(x,d);
                  ans[f[y].se]+=sz[z]-sz[u];
                  ans[f[x].se]+=sz[u]-sz[x];
              }
        }
  }

int main()
  {
      freopen("worldtree.in","r",stdin);
        freopen("worldtree.out","w",stdout);
        int i;
        n=gint();
        re(i,1,n-1){int x=gint(),y=gint();e[x].pb(y);e[y].pb(x);}
        bfs();
        int Q=gint();
        while(Q--)
          {
              m=gint();
                re(i,1,m)mark[h2[i]=h[i]=gint()]=i;
                if(!mark[1])h[++m]=1;
                build();
                solve();
                re(i,1,m)if(mark[h2[i]])PF("%d ",ans[h2[i]]),ans[h2[i]]=mark[h2[i]]=0;PF("\n");
            }
        return 0;
  }

时间: 2024-12-08 13:22:00

bzoj3572[Hnoi2014]世界树的相关文章

BZOJ3572 [Hnoi2014]世界树 【虚树 + 树形dp】

题目 世界树是一棵无比巨大的树,它伸出的枝干构成了整个世界.在这里,生存着各种各样的种族和生灵,他们共同信奉着绝对公正公平的女神艾莉森,在他们的信条里,公平是使世界树能够生生不息.持续运转的根本基石. 世界树的形态可以用一个数学模型来描述:世界树中有n个种族,种族的编号分别从1到n,分别生活在编号为1到n的聚居地上,种族的编号与其聚居地的编号相同.有的聚居地之间有双向的道路相连,道路的长度为1.保证连接的方式会形成一棵树结构,即所有的聚居地之间可以互相到达,并且不会出现环.定义两个聚居地之间的距

bzoj千题计划255:bzoj3572: [Hnoi2014]世界树

http://www.lydsy.com/JudgeOnline/problem.php?id=3572 明显需要构造虚树 点属于谁管理分三种情况: 1.属于虚树的点 2.在虚树上的边上的点 3.既不属于虚树的点,又不属于虚树上的边的点 第一种情况: 先做一遍树形dp,得到子树中距离它最近的点 再dfs一遍,看看父节点那一块 是否有比它现在的点更近的点 第二种情况: 一条边u-->v 如果u和v属于同一点x管理,那么这条边所代表的所有点也都属于x管理 否则的话,二分一个点tmp,tmp以上的点归

bzoj 3572 [Hnoi2014]世界树(虚树+DP)

3572: [Hnoi2014]世界树 Time Limit: 20 Sec  Memory Limit: 512 MBSubmit: 645  Solved: 362[Submit][Status][Discuss] Description 世界树是一棵无比巨大的树,它伸出的枝干构成了整个世界.在这里,生存着各种各样的种族和生灵,他们共同信奉着绝对公正公平的女神艾莉森,在他们的信条里,公平是使世界树能够生生不息.持续运转的根本基石.     世界树的形态可以用一个数学模型来描述:世界树中有n个

【BZOJ-3572】世界树 虚树 + 树形DP

3572: [Hnoi2014]世界树 Time Limit: 20 Sec  Memory Limit: 512 MBSubmit: 1084  Solved: 611[Submit][Status][Discuss] Description 世界树是一棵无比巨大的树,它伸出的枝干构成了整个世界.在这里,生存着各种各样的种族和生灵,他们共同信奉着绝对公正公平的女神艾莉森,在他们的信条里,公平是使世界树能够生生不息.持续运转的根本基石.世界树的形态可以用一个数学模型来描述:世界树中有n个种族,种

【bzoj3572】 世界树

http://www.lydsy.com/JudgeOnline/problem.php?id=3572 (题目链接) 题意:给出一棵n个节点的树,q次询问,每次给出k个关键点.规定对于树上每个节点归属于离它最近的关键点管辖,若与若干关键点距离相同取编号小的关键点,求每个关键点管辖多少个点(可以管辖自己). solution  先构造虚树,具体过程见 http://blog.csdn.net/MashiroSky/article/details/51971718 之后在虚树上两次dfs,分别自底

BZOJ 3572: [Hnoi2014]世界树 [虚树 DP 倍增]

传送门 题意: 一棵树,多次询问,给出$m$个点,求有几个点到给定点最近 写了一晚上... 当然要建虚树了,但是怎么$DP$啊 大爷题解传送门 我们先求出到虚树上某个点最近的关键点 然后枚举所有的边$(f,x)$,讨论一下边上的点的子树应该靠谁更近 倍增求出分界点 注意有些没出现在虚树上的子树 注意讨论的时候只讨论链上的不包括端点,否则$f$的子树会被贡献多次 学到的一些$trick:$ 1.$pair$的妙用 2.不需要建出虚树只要求虚树的$dfs$序(拓扑序)和$fa$就可以$DP$了 注意

bzoj 3572: [Hnoi2014]世界树

再次跪虚树(DP)(两遍DP挺有意思的..) (这个题的情况,,跪) %%%http://hzwer.com/6804.html 1 #include <bits/stdc++.h> 2 #define LL long long 3 #define N 300005 4 using namespace std; 5 inline int ra() 6 { 7 int x=0,f=1; char ch=getchar(); 8 while (ch<'0' || ch>'9') {if

HNOI2014 世界树

Description Input Output Sample Input 10 2 1 3 2 4 3 5 4 6 1 7 3 8 3 9 4 10 1 5 2 6 1 5 2 7 3 6 9 1 8 4 8 7 10 3 5 2 9 3 5 8 Sample Output 1 9 3 1 4 1 1 10 1 1 3 5 4 1 3 1 1 Data Constraint Hint 我们每次询问的关键点个数是有限的,实树上很多节点的情况实际是一样的,我们可以直接一起处理. 那么我们要构建一个

●洛谷P3233 [HNOI2014]世界树

题链: https://www.luogu.org/problemnew/show/P3233题解: 虚树,dp,倍增. 首先对于每个询问,要把虚树建出来,这一步就从略了.这里着重分享一下如何求答案. 比如,我们建出来如下一颗虚树,给出的关键点是那些黑点点们,红点点是"被迫"加入的LCA 然后,我们就要去求每个黑点的答案了! 等等,YY了一会儿,发现好像现在还并不方便直接求. 那么我们一步一步来,先求出这颗虚树上的每个节点属于哪个黑点管辖(到哪个黑点最近). 用near[u]表示距离u