CF1060E.Sergey and Subway

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Sergey Semyonovich is a mayor of a county city N and he used to spend his days and nights in thoughts of further improvements of Nkers' lives. Unfortunately for him, anything and everything has been done already, and there are no more possible improvements he can think of during the day (he now prefers to sleep at night). However, his assistants have found a solution and they now draw an imaginary city on a paper sheet and suggest the mayor can propose its improvements.

Right now he has a map of some imaginary city with nn subway stations. Some stations are directly connected with tunnels in such a way that the whole map is a tree (assistants were short on time and enthusiasm). It means that there exists exactly one simple path between each pair of station. We call a path simple if it uses each tunnel no more than once.

One of Sergey Semyonovich's favorite quality objectives is the sum of all pairwise distances between every pair of stations. The distance between two stations is the minimum possible number of tunnels on a path between them.

Sergey Semyonovich decided to add new tunnels to the subway map. In particular, he connected any two stations uu and vv that were not connected with a direct tunnel but share a common neighbor, i.e. there exists such a station ww that the original map has a tunnel between uu and ww and a tunnel between ww and vv . You are given a task to compute the sum of pairwise distances between all pairs of stations in the new map.

输入格式

The first line of the input contains a single integer nn ( 2n2000002 \leq n \leq 200\,000 ) — the number of subway stations in the imaginary city drawn by mayor's assistants. Each of the following n1n - 1 lines contains two integers uiu_i and viv_i ( 1ui,vin1 \leq u_i, v_i \leq n , uiviu_i \ne v_i ), meaning the station with these indices are connected with a direct tunnel.

It is guaranteed that these nn stations and n1n - 1 tunnels form a tree.

输出格式

Print one integer that is equal to the sum of distances between all pairs of stations after Sergey Semyonovich draws new tunnels between all pairs of stations that share a common neighbor in the original map.

输入输出样例

  • 输入#1

    4
    1 2
    1 3
    1 4
    

    输出#1

    6
    
  • 输入#2

    4
    1 2
    2 3
    3 4
    

    输出#2

    7
    

说明/提示

In the first sample, in the new map all pairs of stations share a direct connection, so the sum of distances is 66 .

In the second sample, the new map has a direct tunnel between all pairs of stations except for the pair (1,4)(1, 4) . For these two stations the distance is 22 .

首页