CF288D.Polo the Penguin and Trees

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little penguin Polo has got a tree — a non-directed connected acyclic graph, containing nn nodes and n1n-1 edges. We will consider the tree nodes numbered by integers from 1 to nn .

Today Polo wonders, how to find the number of pairs of paths that don't have common nodes. More formally, he should find the number of groups of four integers a,b,ca,b,c and dd such that:

  • 1<=a<b<=n ;
  • 1<=c<d<=n ;
  • there's no such node that lies on both the shortest path from node aa to node bb and from node cc to node dd .

The shortest path betweem two nodes is the path that is shortest in the number of edges.

Help Polo solve this problem.

输入格式

The first line contains integer nn (1<=n<=80000)(1<=n<=80000) — the number of tree nodes. Each of the following n1n-1 lines contains a pair of integers uiu_{i} and viv_{i} (1<=ui,vi<=n; uivi)(1<=u_{i},v_{i}<=n; u_{i}≠v_{i}) — the ii -th edge of the tree.

It is guaranteed that the given graph is a tree.

输出格式

In a single line print a single integer — the answer to the problem.

Please do not use the %lld specificator to read or write 64-bit numbers in С++. It is recommended to use the cin, cout streams or the %I64d specificator.

输入输出样例

  • 输入#1

    4
    1 2
    2 3
    3 4
    

    输出#1

    2
    
首页