CF1187E.Tree Painting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a tree (an undirected connected acyclic graph) consisting of nn vertices. You are playing a game on this tree.

Initially all vertices are white. On the first turn of the game you choose one vertex and paint it black. Then on each turn you choose a white vertex adjacent (connected by an edge) to any black vertex and paint it black.

Each time when you choose a vertex (even during the first turn), you gain the number of points equal to the size of the connected component consisting only of white vertices that contains the chosen vertex. The game ends when all vertices are painted black.

Let's see the following example:

Vertices 11 and 44 are painted black already. If you choose the vertex 22 , you will gain 44 points for the connected component consisting of vertices 2,3,52, 3, 5 and 66 . If you choose the vertex 99 , you will gain 33 points for the connected component consisting of vertices 7,87, 8 and 99 .

Your task is to maximize the number of points you gain.

输入格式

The first line contains an integer nn — the number of vertices in the tree ( 2n21052 \le n \le 2 \cdot 10^5 ).

Each of the next n1n - 1 lines describes an edge of the tree. Edge ii is denoted by two integers uiu_i and viv_i , the indices of vertices it connects ( 1ui,vin1 \le u_i, v_i \le n , uiviu_i \ne v_i ).

It is guaranteed that the given edges form a tree.

输出格式

Print one integer — the maximum number of points you gain if you will play optimally.

输入输出样例

  • 输入#1

    9
    1 2
    2 3
    2 5
    2 6
    1 4
    4 9
    9 7
    9 8
    

    输出#1

    36
    
  • 输入#2

    5
    1 2
    1 3
    2 4
    2 5
    

    输出#2

    14
    

说明/提示

The first example tree is shown in the problem statement.

首页