시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 256 MB0000.000%

문제

In the Hundred Byte Wood, the ants have built $n$ anthills numbered $1$ through $n$. The anthills are connected by two-way tunnels so that there is exactly one simple path between each pair of the anthills.

Spring has come and the queen ant announced an annual rotation in the anthills structure. The rotation affects $m$ worker ants: the $i$-th of them needs to leave its current anthill (labelled $a_i$) at time $t_i$ and proceed to the anthill labelled $b_i$ using the shortest possible path. All the ants move with the same speed and none of them stop before reaching the destination.

The queen suspects that too many ants meeting at a single point can organize and start the secession. For each of the worker ants, the queen would like to know what is the largest number of travelling ants this worker will meet at a single point (either at some point of a tunnel or in one of the anthills). Note that meetings occur only during travel; that is, if the $i$-th ant reaches the destination at time $t'_i$, then ants $i$ and $j$ can meet each other only at time $t \in [t_i, t'_i] \cap [t_j, t'_j]$.

입력

The first line of the input contains two integers $n, m$ ($1 \leq n, m \leq 100\,000$) -- the number of the anthills and the count of worker ants affected by the rotation, respectively.

The following $n - 1$ rows contain the tunnel structure. Each of the rows contains three integers $u_i, v_i, d_i$ ($1 \leq u_i, v_i \leq n$, $u_i \neq v_i$, $1 \leq d_i \leq 10^9$) which indicate that the anthills $u_i$ and $v_i$ are connected by a two-way tunnel and a worker passes it in $d_i$ units of time.

The final $m$ rows describe the worker ants taking part in the rotation. Each of them contains three integers $a_i, b_i, t_i$ ($1 \leq a_i, b_i \leq n$, $a_i \neq b_i$, $1 \leq t_i \leq 10^9$) described in the task statement.

출력

You should output $m$ rows; the $k$-th of them should contain the largest number of the travelling ants (other than $k$) the $k$-th ant will meet simultaneously.

예제 입력 1

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

예제 출력 1

2
2
2
1
0