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
| #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<vector> using namespace std; using ll=long long; const int N=3e5+10,K=18; 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; int tot,head[N],ver[N<<1],ne[N<<1]; int f[N][K+2],d[N]; vector<int>res; inline bool cmp(const int &x,const int &y){return x>y;} inline void add(int u,int v) { ver[++tot]=v; ne[tot]=head[u]; head[u]=tot; } void dfs(int x,int fa) { f[x][1]=n; for(int i=head[x];i;i=ne[i]) { int y=ver[i]; if(y==fa)continue; dfs(y,x); d[x]=max(d[x],d[y]); } d[x]++; for(int k=1;k<=K;k++) { res.clear(); for(int i=head[x];i;i=ne[i]) { int y=ver[i]; if(y==fa)continue; res.push_back(f[y][k-1]); } sort(res.begin(),res.end(),cmp); int si=res.size(); for(int i=0;i<si;i++) f[x][k]=max(f[x][k],min(res[i],i+1)); } } void get_max(int x,int fa) { for(int i=head[x];i;i=ne[i]) { int y=ver[i]; if(y==fa)continue; get_max(y,x); for(int k=1;k<=K;k++)f[x][k]=max(f[x][k],f[y][k]); } } int main() { read(n); for(int i=1,u,v;i<n;i++)read(u,v),add(u,v),add(v,u); dfs(1,0); get_max(1,0); ll ans=0; for(int i=1;i<=n;i++)ans+=d[i]; for(int i=1;i<=n;i++) for(int k=1;k<=K;k++) ans+=max(f[i][k]-1,0); printf("%lld\n",ans); return 0; }
|