Tree Painting

题意翻译

给定一棵 $n$ 个点的树 初始全是白点 要求你做 $n$ 步操作,每一次选定一个与一个黑点相隔一条边的白点,将它染成黑点,然后获得该白点被染色前所在的白色联通块大小的权值。 第一次操作可以任意选点。 求可获得的最大权值。

题目描述

You are given a tree (an undirected connected acyclic graph) consisting of $ n $ 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: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1187E/80d1bdfd9c05e38560143dd180baa827e846ec90.png) Vertices $ 1 $ and $ 4 $ are painted black already. If you choose the vertex $ 2 $ , you will gain $ 4 $ points for the connected component consisting of vertices $ 2, 3, 5 $ and $ 6 $ . If you choose the vertex $ 9 $ , you will gain $ 3 $ points for the connected component consisting of vertices $ 7, 8 $ and $ 9 $ . Your task is to maximize the number of points you gain.

输入输出格式

输入格式


The first line contains an integer $ n $ — the number of vertices in the tree ( $ 2 \le n \le 2 \cdot 10^5 $ ). Each of the next $ n - 1 $ lines describes an edge of the tree. Edge $ i $ is denoted by two integers $ u_i $ and $ v_i $ , the indices of vertices it connects ( $ 1 \le u_i, v_i \le n $ , $ u_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.