Spiders 求树的直径(距离最远的两个点)

One day mum asked Petya to sort his toys and get rid of some of them. Petya found a whole box of toy spiders. They were quite dear to him and the boy didn't want to throw them away. Petya conjured a cunning plan: he will glue all the spiders together and attach them to the ceiling. Besides, Petya knows that the lower the spiders will hang, the more mum is going to like it and then she won't throw his favourite toys away. Help Petya carry out the plan.

A spider consists of k beads tied together by k - 1 threads. Each thread connects two different beads, at that any pair of beads that make up a spider is either directly connected by a thread, or is connected via some chain of threads and beads.

Petya may glue spiders together directly gluing their beads. The length of each thread equals 1. The sizes of the beads can be neglected. That's why we can consider that gluing spiders happens by identifying some of the beads (see the picture). Besides, the construction resulting from the gluing process should also represent a spider, that is, it should have the given features.

After Petya glues all spiders together, he measures the length of the resulting toy. The distance between a pair of beads is identified as the total length of the threads that connect these two beads. The length of the resulting construction is the largest distance between all pairs of beads. Petya wants to make the spider whose length is as much as possible.

The picture two shows two spiders from the second sample. We can glue to the bead number 2 of the first spider the bead number 1 of the second spider. The threads in the spiders that form the sequence of threads of maximum lengths are highlighted on the picture.

Input

The first input file line contains one integer n (1 ≤ n ≤ 100) — the number of spiders. Next n lines contain the descriptions of each spider: integer ni (2 ≤ ni ≤ 100) — the number of beads, then ni - 1 pairs of numbers denoting the numbers of the beads connected by threads. The beads that make up each spider are numbered from 1 to ni.

Output

Print a single number — the length of the required construction.

Sample test(s)
input
1
3 1 2 2 3
output
2
input
2
3 1 2 1 3
4 1 2 2 3 2 4
output
4
input
2
5 1 2 2 3 3 4 3 5
7 3 4 1 2 2 4 4 6 2 7 6 5
output
7

//


#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=300;
struct Node
{
    int t;
    int next;
};
Node G[maxn];
int p[maxn];
int l;
void init()
{
    l=0;
    memset(p,-1,sizeof(p));
}
void addedge(int u,int t)
{
    G[l].t=t;
    G[l].next=p[u];
    p[u]=l++;
}
int _max;
int du[maxn];
int max1[maxn],max2[maxn];
int tmp[4];
void dfs(int u,int fath)
{
    max1[u]=max2[u]=-(1<<25);
    if(du[u]==1&&u!=1)
    {
        max1[u]=0;max2[u]=-(1<<25);
        return ;
    }
    for(int i=p[u];i!=-1;i=G[i].next)
    {
        int t=G[i].t;
        if(t==fath) continue;
        dfs(t,u);
        tmp[0]=max1[u],tmp[1]=max2[u];
        tmp[2]=1+max1[t];
        sort(tmp,tmp+3);
        max1[u]=tmp[2],max2[u]=tmp[1];
    }
    _max=max(_max,max1[u]);
    _max=max(_max,max1[u]+max2[u]);
}
int main()
{
    int ci;
    while(scanf("%d",&ci)==1)
    {
        int ans=0;
        while(ci--)
        {
            int n;scanf("%d",&n);
            init();
            memset(du,0,sizeof(du));
            for(int i=0;i<n-1;i++)
            {
                int u,v;scanf("%d%d",&u,&v);
                addedge(u,v);
                addedge(v,u);
                du[u]++,du[v]++;
            }
            _max=0;
            dfs(1,-1);
            ans+=_max;
        }
        printf("%d\n",ans);
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值