#P3565. [POI2014] HOT-Hotels

[POI2014] HOT-Hotels

题目描述

There are nn towns in Byteotia, connected with only n1n-1 roads.

Each road directly links two towns.

All the roads have the same length and are two way.

It is known that every town can be reached from every other town via a route consisting of one or more (direct-link) roads.

In other words, the road network forms a tree.

Byteasar, the king of Byteotia, wants three luxury hotels erected to attract tourists from all over the world.

The king desires that the hotels be in different towns and at the same distance one from each other.

Help the king out by writing a program that determines the number of possible locations of the hotel triplet in Byteotia.

输入格式

The first line of the standard input contains a single integer nn (1n5 0001\le n\le 5\ 000), the number of towns in Byteotia.

The towns are numbered from 11 to nn.

The Byteotian road network is then described in n1n-1 lines.

Each line contains two integers aa and bb (1abn1\le a\le b\le n) , separated by a single space, that indicate there is a direct road between the towns aa and bb.

输出格式

The first and only line of the standard output should contain a single integer equal to the number of possible placements of the hotels.

题目大意

给定一棵树,在树上选 33 个点,要求两两距离相等,求方案数。

7
1 2
5 7
2 5
2 3
5 6
4 5

5