King Graff's Tolls

King Graff, the ruler of the land of Feerie, feels that he is not quite rich enough. As such, he would like to impose travel tolls on his people! After all, why should they get to walk around his kingdom for free?

Feerie consists of N (1 ≤ N ≤ 105) towns (numbered 1..N), and N−1 roads. The i-th road runs between distinct towns Ai and Bi, in both directions. Every pair of towns is connected by exactly one path of connected roads. Currently, all travel is free, but King Graff is interested in charging for passage through certain towns.

He is planning to have a meeting with the royal computer scientist - that would be you. The meeting will last M (1 ≤ M ≤ 105) minutes, and in the i-th minute, one of two things will occur, described by Ti. If Ti = "T", Graff will proclaim that town Xi shall henceforth cost Yi (0 ≤ Yi ≤ 109) dollars to pass through, and you'll update the map accordingly. Otherwise, if Ti = "Q", he will ask you how much a trip from town Xi to a different town Yi would currently cost a commoner, in order to gauge the effectiveness of his tolls - and you had better answer quickly! Note that neither the starting nor the ending town's tolls are included in a trip's cost, as they are not passed through. Note also that a town's toll may be modified by Graff multiple times throughout the meeting, in which case the most recent modification at any point will stand.

Input

Line 1: 1 integer, N
Next N - 1 lines: 2 integers, Ai and Bi, for i = 1..N−1
Next line: 1 integer, M
Next M lines: 1 character, Ti, and 2 integers, Xi and Yi, for i = 1..M

Output

X lines (where X is the number of questions asked by King Graff): 1 integer, the cost of the i-th trip asked for (in dollars), for i = 1..X

Sample Input

4
1 3
2 3
4 3
6
Q 1 4
T 3 5
Q 4 2
Q 3 1
T 3 1
Q 1 2

Sample Output

0
5
0
1

Explanation of Sample

The map of Feerie is illustrated below:

The first trip asked for by King Graff goes through towns 1 → 3 → 4. Since town 3 has no toll at that point, the trip's cost is 0.
The second trip goes through towns 4 → 3 → 2 and has a cost of 5, due to the new toll on town 3.
The third trip goes through towns 3 → 1, passing through no towns and so costing nothing.
The final trip goes through towns 1 → 3 → 2 and costs only 1, as town 3's toll is reduced by then.

All Submissions
Best Solutions


Point Value: 30 (partial)
Time Limit: 2.00s
Memory Limit: 64M
Added: Sep 14, 2012
Author: SourSpinach

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, TEXT, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

It's quiet in here...