CF690F1.Tree of Life (easy)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn points (called vertices), some of which are connected using n1n-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 22 , i.e., consisting of two edges. Help her!

输入格式

The first line of the input contains a single integer nn – the number of vertices in the tree ( 1<=n<=100001<=n<=10000 ). The vertices are labeled with the numbers from 1 to nn . Then n1n-1 lines follow, each describing one edge using two space-separated numbers aba b – the labels of the vertices connected by the edge ( 1<=a<b<=n1<=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

说明/提示

In the second sample, there are four lifelines: paths between vertices 11 and 33 , 22 and 44 , 22 and 55 , and 44 and 55 .

首页