标签:stream float tap mirror game cti eset path measure
xxxxxxxxxx
using namespace std;
inline int read(){
register int x(0),f(1); register char c(getchar());
while(c<‘0‘||‘9‘<c){ if(c==‘-‘) f=-1; c=getchar(); }
while(‘0‘<=c&&c<=‘9‘) x=(x<<1)+(x<<3)+(c^48),c=getchar();
return x*f;
}
struct edge{
int to,next;
edge(){}
edge(const int &_to,const int &_next){
to=_to,next=_next;
}
}e[maxn<<1];
int head[maxn],k;
inline void add(const int &u,const int &v){
e[k]=edge(v,head[u]);
head[u]=k++;
}
int dp[maxn][2],n;//dp[i][0]是最大距离,dp[i][1]是次大距离
void dfs1(int u,int pre){
for(register int i=head[u];~i;i=e[i].next){
int v=e[i].to;
if(v==pre) continue;
dfs1(v,u);
int tmp=dp[v][0]+1;
if(tmp>dp[u][0]) swap(tmp,dp[u][0]);
if(tmp>dp[u][1]) swap(tmp,dp[u][1]);//次大距离
}
}
void dfs2(int u,int pre){
for(register int i=head[u];~i;i=e[i].next){
int v=e[i].to;
if(v==pre) continue;
int tmp;
if(dp[u][0]==dp[v][0]+1) tmp=dp[u][1]+1;
else tmp=dp[u][0]+1;
if(tmp>dp[v][0]) swap(tmp,dp[v][0]);
if(tmp>dp[v][1]) swap(tmp,dp[v][1]);
dfs2(v,u);
}
}
int main(){
memset(head,-1,sizeof head);
n=read();
for(register int i=1;i<n;i++){
int u=read(),v=read();
add(u,v),add(v,u);
}
dfs1(1,0);//以它为根的子树的最大深度
dfs2(1,0);//根节点到它的距离+根节点的另外所有的子树(没有这个点的子树)的最大深度
for(register int i=1;i<=n;i++) printf("%d\n",dp[i][0]);
return 0;
}
标签:stream float tap mirror game cti eset path measure
原文地址:https://www.cnblogs.com/akura/p/10804365.html