1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
#include<iostream> #include<cstdio> #include<vector> #include<algorithm> using namespace std; long long read() { long long x=0,f=1; char c=getchar(); while(!isdigit(c)){if(c=='-') f=-1;c=getchar();} while(isdigit(c)){x=x*10+c-'0';c=getchar();} return x*f; } const int N=300000+1000; vector <int> e[N],e2[N]; int n,q,a[N],b[N]; int dfn[N],dfn_to,depth[N],fa[N][21],size[N]; void dfs(int now) { dfn[now]=++dfn_to; size[now]=1; for(int i=1;i<=20;i++) fa[now][i]=fa[fa[now][i-1]][i-1]; for(int i=0;i<int(e[now].size());i++) if(dfn[e[now][i]]==0) { depth[e[now][i]]=depth[now]+1; fa[e[now][i]][0]=now; dfs(e[now][i]); size[now]+=size[e[now][i]]; } } int LCA(int x,int y) { if(depth[x]<depth[y]) swap(x,y); for(int i=20;i>=0;i--) if(depth[x]-(1<<i)>=depth[y]) x=fa[x][i]; if(x==y) return x; for(int i=20;i>=0;i--) if(fa[x][i]!=fa[y][i]) x=fa[x][i],y=fa[y][i]; return fa[x][0]; } int cmp(int x,int y) { return dfn[x]<dfn[y]; } bool sp[N]; int MIN[N],f[N],ans[N]; inline int GetDis(int x,int y) { if(depth[x]<depth[y]) swap(x,y); return depth[x]-depth[y]; } void dfs2(int now) { if(sp[now]==true) f[now]=now,MIN[now]=0; for(int i=0;i<int(e2[now].size());i++) { dfs2(e2[now][i]); if(MIN[e2[now][i]]+GetDis(e2[now][i],now) < MIN[now] or (MIN[e2[now][i]]+GetDis(e2[now][i],now)==MIN[now] and f[now]>f[e2[now][i]])) f[now]=f[e2[now][i]],MIN[now]=MIN[e2[now][i]]+GetDis(e2[now][i],now); } } void dfs3(int now,int fa) { if(fa!=0) { if(MIN[fa]+GetDis(fa,now) < MIN[now] or (MIN[fa]+GetDis(fa,now)==MIN[now] and f[now]>f[fa])) f[now]=f[fa],MIN[now]=MIN[fa]+GetDis(fa,now); } ans[f[now]]++; for(int i=0;i<int(e2[now].size());i++) dfs3(e2[now][i],now); } void GetSum(int x,int y,int &sum_x,int &sum_y) { bool IsSwap=false; if(depth[x]<depth[y]) IsSwap=true,swap(x,y); int sx=x,dis_x=MIN[x]; for(int i=20;i>=0;i--) if(dis_x+(1<<i) < MIN[y]+depth[x]-depth[y]-(1<<i)) f[fa[x][i]]=f[x], x=fa[x][i],dis_x+=(1<<i); if(dis_x+1==MIN[y]+depth[x]-depth[y]-1 and f[x]<f[y]) x=fa[x][0]; sum_x=size[x]-size[sx]; for(int i=20;i>=0;i--) if(depth[sx]-(1<<i)>depth[y]) sx=fa[sx][i]; sum_y=size[sx]-size[x]; if(IsSwap==true) swap(sum_x,sum_y); } void dfs4(int now) { int tmp=size[now]-1; for(int i=0;i<int(e2[now].size());i++) { int sum1,sum2; GetSum(now,e2[now][i],sum1,sum2); ans[f[now]]+=sum1,ans[f[e2[now][i]]]+=sum2; tmp-=(size[e2[now][i]]+sum1+sum2); dfs4(e2[now][i]); } ans[f[now]]+=tmp; } int main() { freopen("3233.in","r",stdin); freopen("3233.out","w",stdout);
n=read(); for(int i=1;i<n;i++) { int s=read(),t=read(); e[s].push_back(t); e[t].push_back(s); }
fa[1][0]=1; dfs(1);
q=read(); for(int i=1;i<=q;i++) { int m=read(); for(int j=1;j<=m;j++) b[j]=a[j]=read();
sort(a+1,a+1+m,cmp); static int mstack[N],top,rec[N],cnt; cnt=0; mstack[top=1]=1; for(int j=(a[1]==1?2:1);j<=m;j++) { while(LCA(mstack[top],a[j])!=mstack[top]) { int lca=LCA(mstack[top],a[j]); if(depth[lca]>depth[mstack[top-1]]) { e2[lca].push_back(mstack[top]); rec[++cnt]=mstack[top],mstack[top]=lca; } else { e2[mstack[top-1]].push_back(mstack[top]); rec[++cnt]=mstack[top--]; } } mstack[++top]=a[j]; } while(top>1) { e2[mstack[top-1]].push_back(mstack[top]); rec[++cnt]=mstack[top--]; } rec[++cnt]=1;
for(int j=1;j<=m;j++) sp[a[j]]=true; for(int j=1;j<=cnt;j++) MIN[rec[j]]=0x3f3f3f3f,ans[rec[j]]=0; dfs2(1); dfs3(1,0); dfs4(1); for(int j=1;j<=m;j++) printf("%d ",ans[b[j]]); printf("\n");
for(int j=1;j<=m;j++) sp[a[j]]=false; for(int j=1;j<=cnt;j++) e2[rec[j]].clear(),ans[rec[j]]=0; } return 0; }
|