CF1179D.Fedor Runs for President

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Fedor runs for president of Byteland! In the debates, he will be asked how to solve Byteland's transport problem. It's a really hard problem because of Byteland's transport system is now a tree (connected graph without cycles). Fedor's team has found out in the ministry of transport of Byteland that there is money in the budget only for one additional road. In the debates, he is going to say that he will build this road as a way to maximize the number of distinct simple paths in the country. A simple path is a path which goes through every vertex no more than once. Two simple paths are named distinct if sets of their edges are distinct.

But Byteland's science is deteriorated, so Fedor's team hasn't succeeded to find any scientists to answer how many distinct simple paths they can achieve after adding exactly one edge on the transport system?

Help Fedor to solve it.

An edge can be added between vertices that are already connected, but it can't be a loop.

In this problem, we consider only simple paths of length at least two.

输入格式

The first line contains one integer nn ( 2n500 0002 \leq n \leq 500\ 000 ) — number of vertices in Byteland's transport system.

Each of the following n1n - 1 lines contains two integers viv_i and uiu_i ( 1vi,uin1 \leq v_i, u_i \leq n ). It's guaranteed that the graph is tree.

输出格式

Print exactly one integer — a maximal number of simple paths that can be achieved after adding one edge.

输入输出样例

  • 输入#1

    2
    1 2
    

    输出#1

    2
    
  • 输入#2

    4
    1 2
    1 3
    1 4
    

    输出#2

    11
    
  • 输入#3

    6
    1 2
    1 3
    3 4
    3 5
    4 6
    

    输出#3

    29
    
首页