A tree structure with some colors associated with its vertices and a sequence of commands on it are given. A command is either an update operation or a query on the tree. Each of the update operations changes the color of a specified vertex, without changing the tree structure. Each of the queries asks the number of edges in the minimum connected subgraph of the tree that contains all the vertices of the specified color.
Your task is to find answers of each of the queries, assuming that the commands are performed in the given order.
输入描述:
The input consists of a single test case of the following format.
n
. . .

m

. . .
The first line contains an integer n
)
, the number of vertices of the tree. The vertices are numbered 1 through n. Each of the following n−1 lines contains two integers
)
and
)
, meaning that the i-th edge connects vertices

and

. It is ensured that all the vertices are connected, that is, the given graph is a tree. The next line contains n integers,

through

, where
)
is the initial color of vertex j. The next line contains an integer m
)
, which indicates the number of commands. Each of the following m lines contains a command in the following format.
U

or
Q

When the k-th command starts with U, it means an update operation changing the color of vertex
)
to
)
. When the k-th command starts with Q, it
means a query asking the number of edges in the minimum connected subgraph of the tree that contains all the vertices of color
)
.
输出描述:
For each query, output the number of edges in the minimum connected subgraph of the tree containing all the vertices of the specified color. If the tree doesn’t contain any vertex of the specified color, output -1 instead.
示例1
输入
复制
5
1 2
2 3
3 4
2 5
1 2 1 2 3
11
Q 1
Q 2
Q 3
Q 4
U 5 1
Q 1
U 3 2
Q 1
Q 2
U 5 4
Q 1