CF1797F.Li Hua and Path

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Li Hua has a tree of nn vertices and n1n-1 edges. The vertices are numbered from 11 to nn .

A pair of vertices (u,v)(u,v) ( u<vu < v ) is considered cute if exactly one of the following two statements is true:

  • uu is the vertex with the minimum index among all vertices on the path (u,v)(u,v) .
  • vv is the vertex with the maximum index among all vertices on the path (u,v)(u,v) .

There will be mm operations. In each operation, he decides an integer kjk_j , then inserts a vertex numbered n+jn+j to the tree, connecting with the vertex numbered kjk_j .

He wants to calculate the number of cute pairs before operations and after each operation.

Suppose you were Li Hua, please solve this problem.

输入格式

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

Next n1n-1 lines contain the edges of the tree. The ii -th line contains two integers uiu_i and viv_i ( 1ui,vin1\le u_i,v_i\le n ; uiviu_i\ne v_i ) — the corresponding edge. The given edges form a tree.

The next line contains the single integer mm ( 1m21051\le m\le 2\cdot 10^5 ) — the number of operations.

Next mm lines contain operations — one operation per line. The jj -th operation contains one integer kjk_j ( 1kj<n+j1\le k_j < n+j ) — a vertex.

输出格式

Print m+1m+1 integers — the number of cute pairs before operations and after each operation.

输入输出样例

  • 输入#1

    7
    2 1
    1 3
    1 4
    4 6
    4 7
    6 5
    2
    5
    6

    输出#1

    11
    15
    19

说明/提示

The initial tree is shown in the following picture:

There are 1111 cute pairs — (1,5),(2,3),(2,4),(2,6),(2,7),(3,4),(3,6),(3,7),(4,5),(5,7),(6,7)(1,5),(2,3),(2,4),(2,6),(2,7),(3,4),(3,6),(3,7),(4,5),(5,7),(6,7) .

Similarly, we can count the cute pairs after each operation and the result is 1515 and 1919 .

首页