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.
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.
Print a single number — the length of the required construction.
1 3 1 2 2 3
2
2 3 1 2 1 3 4 1 2 2 3 2 4
4
2 5 1 2 2 3 3 4 3 5 7 3 4 1 2 2 4 4 6 2 7 6 5
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;
}
蜘蛛玩具组装计划
帮助Petya将他的玩具蜘蛛通过粘合珠子的方式组装成一个更大的结构,目标是让组装后的玩具长度尽可能长。每个蜘蛛由多个珠子和连接它们的线构成,Petya需要找到最优的粘合方式。
470

被折叠的 条评论
为什么被折叠?



