QOJ.ac

QOJ

実行時間制限: 2 s メモリ制限: 512 MB 満点: 100

#18809. Tree and Query 6

統計

There is a tree (connected acyclic undirected graph) with $N$ vertices. The vertices are numbered $1$ to $N$, and the edges are numbered $1$ to $N-1$. Initially, all vertices are colored black.

Write a program that performs the following two types of queries:

  • 1 i: Toggle the color of vertex $i$ (white $\to$ black, black $\to$ white).
  • 2 u: Count the number of vertices $v$ that are connected to $u$. Two vertices are considered connected if all vertices on the path connecting them have the same color.

Input

The first line contains $N$ ($2 \le N \le 100{,}000$).

The next $N-1$ lines each contain two integers $u$ and $v$ — the endpoints of the $i$-th edge.

The next line contains the number of queries $M$ ($1 \le M \le 100{,}000$).

The next $M$ lines each contain a query.

Output

For each type 2 query, output the result on its own line, in order.

Examples

Input 1

5
1 2
1 3
1 4
1 5
3
2 1
1 1
2 1

Output 1

5
1

Input 2

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

Output 2

7
3
3

Discussions

About Discussions

The discussion section is only for posting: General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.