303580: CF690F1. Tree of Life (easy)
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Tree of Life (easy)
题意翻译
求一棵树上长度为$2$的路径条数.题目描述
Heidi has finally found the mythical Tree of Life – a legendary combinatorial structure which is said to contain a prophecy crucially needed to defeat the undead armies. On the surface, the Tree of Life is just a regular undirected tree well-known from computer science. This means that it is a collection of $ n $ points (called vertices), some of which are connected using $ n-1 $ line segments (edges) so that each pair of vertices is connected by a path (a sequence of one or more edges). To decipher the prophecy, Heidi needs to perform a number of steps. The first is counting the number of lifelines in the tree – these are paths of length $ 2 $ , i.e., consisting of two edges. Help her!输入输出格式
输入格式
The first line of the input contains a single integer $ n $ – the number of vertices in the tree ( $ 1<=n<=10000 $ ). The vertices are labeled with the numbers from 1 to $ n $ . Then $ n-1 $ lines follow, each describing one edge using two space-separated numbers $ a b $ – the labels of the vertices connected by the edge ( $ 1<=a<b<=n $ ). It is guaranteed that the input represents a tree.
输出格式
Print one integer – the number of lifelines in the tree.
输入输出样例
输入样例 #1
4
1 2
1 3
1 4
输出样例 #1
3
输入样例 #2
5
1 2
2 3
3 4
3 5
输出样例 #2
4