QOJ.ac

QOJ

Time Limit: 60 s Memory Limit: 3072 MB
[+2]

# 5228. Alphabet Adventuring

Statistics

Alphonse is assembling an alphabet tree and arranging some adventures along the way.

An alphabet tree is an unrooted tree with N N nodes (numbered from 1 to N) and N1 edges.

Initially, the ith edge connects nodes Ai and Bi in both directions, and is labeled with a uppercase letter Ci. Two edges incident to a common node are always labeled with different letters.

Alphonse has Q events to process, the ith of which is one of two types:

  • 1 Ui Li : Add a new node to the tree by connecting it to node Ui with a new edge labeled with uppercase letter Li. Newly added nodes are numbered with integers starting from N+1 in the order they're added.
  • 2 Ui Ki Si : Print the final node Alphonse will end up at if he:
    • Starts a journey at node Ui.
    • Repeatedly traverses a previously untraversed edge (on this journey). If his current node has multiple untraversed edges, he picks the edge labeled with the letter that comes earliest in the string Si.Ends the journey once there are no more untraversed edges at the current node, or Ki edges have been traversed on the journey.

Please help Alphonse determine where each journey will take him.

Constraints

  • 1T20
  • 2N300,000
  • 1Q300,000
  • 1Ai,BiN
  • AiBi
  • Ci,Li,Si,j{A,,Z}
  • 1Ui,Ki600,000
  • The sum of N over all test cases is at most 1,100,000.
  • The sum of Q over all test cases is at most 1,100,000.

For each event, it is guaranteed that:

  • Ui is a valid node in the tree at the time of the event.
  • Li is different from all existing labels of edges incident to Ui at the time of the event.
  • Si's letters are distinct, and are a superset of all edge labels in the tree at the time of the event.

Input Format

Input begins with a single integer T, the number of test cases. For each test case, there is first a line containing a single integer N. Then, N1 lines follow, the ith of which contains space-separated integers Ai and Bi, followed by a space, followed by Ci. Then, there is a line containing the single integer Q. Then, Q lines follow, the ith of which is either 1 Ui Li or 2 Ui Ki Si.

Output Format

For the ith test case, print a single line containing "Case #i: ", followed by space-separated integers, the answers to all type-2 events.

Sample Explanation

problem_5228_1.jpg

The first sample case's alphabet tree is depicted above, and yields the following journeys:

  • Event 1 traverses 1M2E6 (ended after no more edges from node 6)
  • Event 2 traverses 3E1T4A9(ended after K2=3 steps)
  • Event 3 traverses 9A4T1M2 (ended after K3=3 steps)
  • Event 4 traverses 8M3E1T4A9 (ended after no more edges from node 9)
  • Event 6 traverses 8T10 (ended after no more edges from node 10)

The second and third sample cases are depicted below.

problem_5228_2.jpg

In the second case, the journeys are:

  • Event 1 traverses 1P5C2 (ended after K1=2 steps)
  • Event 2 traverses 4P2C5P1 (ended after K2=3 steps)
  • Event 4 traverses 4P2C5U6(endedafterK_4 = 3$ steps)
  • Event 5 traverses 3U2P4 (ended after no more edges from node 4)

In the third case, the journeys are:

  • Event 1 traverses 3C2A1 (ended after K1=2 steps)
  • Event 2 traverses 4E2A1 (ended after K2=2 steps)
  • Event 3 traverses 1A2 (ended after K3=1 steps)

Sample Input

3
9
1 2 M
1 3 E
1 4 T
4 9 A
2 5 T
2 6 E
3 7 A
3 8 M
6
2 1 3 META
2 3 3 TEAM
2 9 3 MATE
2 8 8 TEAM
1 8 T
2 8 8 TEAM
5
1 5 P
5 2 C
2 3 U
4 2 P
5
2 1 2 CPU
2 4 3 CUP
1 5 U
2 4 3 CUP
2 3 4 PUCK
4
2 1 A
2 3 C
4 2 E
3
2 3 2 HACKER
2 4 2 REACH
2 1 1 OCEAN

Sample Output

Case #1: 6 9 2 9 10
Case #2: 2 1 6 4
Case #3: 1 1 2