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
| #include<iostream> #include<cstdio> #include<vector> using namespace std; const int N=2e5+10; template<class T> inline void read(T &x) { x=0;bool f=0; char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=1;ch=getchar();} while(ch>='0'&&ch<='9')x=(x<<1)+(x<<3)+(ch^48),ch=getchar(); if(f)x=~x+1; } template<class T,class ...T1> inline void read(T &x,T1 &...x1) { read(x),read(x1...); } int n,q; int tot,head[N],ver[N<<1],ne[N<<1]; int cnt[N],si[N]; vector<int>f[N]; inline void add(int u,int v) { ver[++tot]=v; ne[tot]=head[u]; head[u]=tot; } void dfs(int x,int fa) { for(int i=head[x];i;i=ne[i]) { int y=ver[i]; if(y==fa)continue; dfs(y,x); si[x]++; cnt[x]=max(cnt[x],cnt[y]); } cnt[x]=max(cnt[x],si[x]-1); f[x].resize(cnt[x]+1); for(int i=0;i<=cnt[x];i++)f[x][i]=si[x]; for(int i=head[x];i;i=ne[i]) { int y=ver[i]; if(y==fa)continue; for(int j=0;j<=cnt[y];j++) f[x][j]+=max(0,f[y][j]-j-1); } int i=0; while(i<cnt[x]&&f[x][i]>=i+1)i++; cnt[x]=i; } int main() { read(n); for(int i=1;i<n;i++) { int u,v; read(u,v); add(u,v),add(v,u); } dfs(1,0); read(q); while(q--) { int x,k; read(x,k); if(k<=f[x].size()-1)printf("%d\n",f[x][k]); else printf("%d\n",si[x]); } return 0; }
|