#abc301h. [abc301_h]Difference of Distance

[abc301_h]Difference of Distance

Problem Statement

We have a connected undirected graph with NN vertices numbered 11 to NN and MM edges numbered 11 to MM. Edge ii connects vertex UiU_i and vertex ViV_i, and has an integer weight of WiW_i. For 1leqs,tleqN,sneqt1\\leq s,t \\leq N,\\ s\\neq t, let us define d(s,t)d(s,t) as follows.

  • For every path connecting vertex ss and vertex tt, consider the maximum weight of an edge along that path. d(s,t)d(s,t) is the minimum value of this weight.

Answer QQ queries. The jj-th query is as follows.

  • You are given Aj,Sj,TjA_j,S_j,T_j. By what value will d(Sj,Tj)d(S_j,T_j) increase when the weight of edge AjA_j is increased by 11?

Note that each query does not actually change the weight of the edge.

Constraints

  • 2leqNleq2times1052\\leq N \\leq 2\\times 10^5
  • N1leqMleq2times105N-1\\leq M \\leq 2\\times 10^5
  • 1leqUi,VileqN1 \\leq U_i,V_i \\leq N
  • UineqViU_i \\neq V_i
  • 1leqWileqM1 \\leq W_i \\leq M
  • The given graph is connected.
  • 1leqQleq2times1051\\leq Q \\leq 2\\times 10^5
  • 1leqAjleqM1 \\leq A_j \\leq M
  • 1leqSj,TjleqN1 \\leq S_j,T_j \\leq N
  • SjneqTjS_j\\neq T_j
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

NN MM U1U_1 V1V_1 W1W_1 vdots\\vdots UMU_M VMV_M WMW_M QQ A1A_1 S1S_1 T1T_1 vdots\\vdots AQA_Q SQS_Q TQT_Q

Output

Print QQ lines. The jj-th line (1leqjleqQ)(1\\leq j \\leq Q) should contain the answer to the jj-th query.


Sample Input 1

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

Sample Output 1

0
0
0
0
0
1
1

image of the given graph

The above figure shows the edge numbers in black and the edge weights in blue.

Let us explain the first through sixth queries.

First, consider d(4,6)d(4,6) in the given graph. The maximum weight of an edge along the path 4rightarrow1rightarrow2rightarrow64 \\rightarrow 1 \\rightarrow 2 \\rightarrow 6 is 55, which is the minimum over all paths connecting vertex 44 and vertex 66, so d(4,6)=5d(4,6)=5.

Next, consider the increment of d(4,6)d(4,6) when the weight of edge x(1leqxleq6)x\\ (1 \\leq x \\leq 6) increases by 11. When x=6x=6, we have d(4,6)=6d(4,6)=6, and the increment is 11. On the other hand, when xneq6x \\neq 6, we have d(4,6)=5d(4,6)=5, and the increment is 00. For instance, when x=3x=3, the maximum weight of an edge along the path 4rightarrow1rightarrow2rightarrow64 \\rightarrow 1 \\rightarrow 2 \\rightarrow 6 is 66, but the maximum weight of an edge along the path $4 \\rightarrow 3 \\rightarrow 1 \\rightarrow 2 \\rightarrow 6$ is 55, so d(4,6)d(4,6) is still 55.


Sample Input 2

2 2
1 2 1
1 2 1
1
1 1 2

Sample Output 2

0

The given graph may contain multi-edges.