100 #ABC070D. [ABC070D] Transit Tree Path

[ABC070D] Transit Tree Path

Score : 400400 points

Problem Statement

You are given a tree with NN vertices. Here, a tree is a kind of graph, and more specifically, a connected undirected graph with N1N-1 edges, where NN is the number of its vertices. The ii-th edge (1iN1)(1 \leq i \leq N-1) connects Vertices aia_i and bib_i, and has a length of cic_i.

You are also given QQ queries and an integer KK. In the jj-th query (1jQ)(1 \leq j \leq Q):

  • find the length of the shortest path from Vertex xjx_j and Vertex yjy_j via Vertex KK.

Constraints

  • 3N1053 \leq N \leq 10^5
  • 1ai,biN(1iN1)1 \leq a_i,b_i \leq N (1 \leq i \leq N-1)
  • 1ci109(1iN1)1 \leq c_i \leq 10^9 (1 \leq i \leq N-1)
  • The given graph is a tree.
  • 1Q1051 \leq Q \leq 10^5
  • 1KN1 \leq K \leq N
  • 1xj,yjN(1jQ)1 \leq x_j,y_j \leq N (1 \leq j \leq Q)
  • xjyj(1jQ)x_j \neq y_j (1 \leq j \leq Q)
  • xjK,yjK(1jQ)x_j \neq K,y_j \neq K (1 \leq j \leq Q)

Input

Input is given from Standard Input in the following format:

NN

a1a_1 b1b_1 c1c_1

::

aN1a_{N-1} bN1b_{N-1} cN1c_{N-1}

QQ KK

x1x_1 y1y_1

::

xQx_{Q} yQy_{Q}

Output

Print the responses to the queries in QQ lines. In the jj-th line j(1jQ)j(1 \leq j \leq Q), print the response to the jj-th query.

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

The shortest paths for the three queries are as follows:

  • Query 11: Vertex 22 → Vertex 11 → Vertex 22 → Vertex 44 : Length 1+1+1=31+1+1=3
  • Query 22: Vertex 22 → Vertex 11 → Vertex 33 : Length 1+1=21+1=2
  • Query 33: Vertex 44 → Vertex 22 → Vertex 11 → Vertex 33 → Vertex 55 : Length 1+1+1+1=41+1+1+1=4
7
1 2 1
1 3 3
1 4 5
1 5 7
1 6 9
1 7 11
3 2
1 3
4 5
6 7
5
14
22

The path for each query must pass Vertex K=2K=2.

10
1 2 1000000000
2 3 1000000000
3 4 1000000000
4 5 1000000000
5 6 1000000000
6 7 1000000000
7 8 1000000000
8 9 1000000000
9 10 1000000000
1 1
9 10
17000000000