题库练习 Mahmoud and Ehab and the bipartiteness
← 上一题 下一题 →

A11228 | Mahmoud and Ehab and the bipartiteness

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Mahmoud and Ehab continue their adventures! As everybody in the evil land knows, Dr. Evil likes bipartite graphs, especially trees.

A tree is a connected acyclic graph. A bipartite graph is a graph, whose vertices can be partitioned into $2$ sets in such a way, that for each edge $(u,v)$ that belongs to the graph, $u$ and $v$ belong to different sets. You can find more formal definitions of a tree and a bipartite graph in the notes section below.

Dr. Evil gave Mahmoud and Ehab a tree consisting of $n$ nodes and asked them to add edges to it in such a way, that the graph is still bipartite. Besides, after adding these edges the graph should be simple (doesn't contain loops or multiple edges). What is the maximum number of edges they can add?

A loop is an edge, which connects a node with itself. Graph doesn't contain multiple edges when for each pair of nodes there is no more than one edge between them. A cycle and a loop aren't the same .

输入格式

The first line of input contains an integer $n$ — the number of nodes in the tree ( $1<=n<=10^{5}$ ).

The next $n-1$ lines contain integers $u$ and $v$ ( $1<=u,v<=n$ , $u≠v$ ) — the description of the edges of the tree.

It's guaranteed that the given graph is a tree.

输出格式

Output one integer — the maximum number of edges that Mahmoud and Ehab can add to the tree while fulfilling the conditions.

输入输出样例

输入 #1
3
1 2
1 3
输出 #1
0
输入 #2
5
1 2
2 3
3 4
4 5
输出 #2
2
C++ 编辑器
输入
输出