码迷,mamicode.com
首页 > 其他好文 > 详细

SPOJ Problem 1437:Longest path in a tree

时间:2015-03-14 10:58:28      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

求树的最长链,BFS和DFS都可以,时间复杂度O(n)

#include<cstdio>
#include<cstring>
int tot,vt[20005],nxt[20005],a[20005];
bool vis[10005];
int n,i,j,xx,yy,s,ma,r;
void search(int x,int dep){
    int p;
    vis[x]=1;
    if (dep>ma){ma=dep;r=x;}
    p=a[x];
    while(p){
        if (!vis[vt[p]]){
            search(vt[p],dep+1);
        }
        p=nxt[p];
    }
}
void addnode(int x,int y){vt[++tot]=y;nxt[tot]=a[x];a[x]=tot;    }
int main (){
    scanf("%d",&n);
    for (i=1;i<n;i++){
        scanf("%d%d",&xx,&yy);
        addnode(xx,yy);
        addnode(yy,xx);
    }
    search(1,0);
    ma=0;
    memset(vis,0,n+1);
    search(r,0);
    printf("%d",ma);
}

 

SPOJ Problem 1437:Longest path in a tree

标签:

原文地址:http://www.cnblogs.com/moris/p/4337088.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!