1884.Rap God

Time Limit: 1s Memory Limit: 256MB

Rick is in love with Unity. But Mr. Meeseeks also love Unity, so Rick and Mr. Meeseeks are "love rivals". Unity loves rap, so it decided that they have to compete in a rap game (battle) in order to choose the best. Rick is too nerds, so instead he's gonna make his verse with running his original algorithm on lyrics "Rap God" song. 1884_1.png His algorithm is a little bit complicated. He's made a tree with n vertices numbered from 1 to n and there's a lowercase english letter written on each edge. He denotes str(a,b) to be the string made by writing characters on edges on the shortest path from a to b one by one (a string of length equal to distance of a to b). Note that str(a,b) is reverse of str(b,a) and str(a,a) is empty. In order to make the best verse he can, he needs to answer some queries, but he's not a computer scientist and is not able to answer those queries, so he asked you to help him. Each query is characterized by two vertices x and y (x \neq y). Answer to this query is the number of vertices like z such that z \neq x,z \neq y and str(x,y) is lexicographically larger than str(x,z).String x=x1x2...x|x| is lexicographically larger than string y=y1y2...y|y|, if either |x| \gt |y| and x1=y1,x2=y2,...,x|y|=y|y|, or exists such number r (r \lt |x|,r \lt |y|), that x1=y1,x2=y2,...,xr=yr and xr+1 \gt yr+1. Characters are compared like their ASCII codes (or alphabetic order).Help Rick get the girl (or whatever gender Unity has).

Input Format(From the terminal/stdin)

Input The first line of input contain two integers n and q (2 \le n \le 20000, 1 \le q \le 20000) - number of vertices in tree and number of queries respectively.The next n-1 lines contain the edges. Each line contains two integers v and u (endpoints of the edge) followed by an English lowercase letter c (1 \le v,u \le n,v \neq u).The next q line contain the queries. Each line contains two integers x and y (1 \le x,y \le n,x \neq y).

Output Format(To the terminal/stdout)

Output Print the answer for each query in one line.

Sample Input 1

Copy
4 3
4 1 t
3 2 p
1 2 s
3 2
1 3
2 1
 · \n
 · · \n
 · · \n
 · · \n
 · \n
 · \n
 · \n

Sample Output 1

Copy
0
1
1
 \n
 \n
 \n

Sample Input 2

Copy
8 4
4 6 p
3 7 o
7 8 p
4 5 d
1 3 o
4 3 p
3 2 e
8 6
3 7
8 1
4 3
 · \n
 · · \n
 · · \n
 · · \n
 · · \n
 · · \n
 · · \n
 · · \n
 · \n
 · \n
 · \n
 · \n

Sample Output 2

Copy
6
1
3
1
 \n
 \n
 \n
 \n

Hints

Here's the tree of first sample testcase: 1884_2.png Here's the tree of second sample testcase: 1884_3.png In this test: str(8,1) = poo str(8,2) = poe str(8,3) = po str(8,4) = pop str(8,5) = popd str(8,6) = popp str(8,7) = p So, for the first query, 1884_4.png and for the third query 1884_5.png is the answer.

Submit

请先 登录

© 2025 FAQs