#include using namespace std; #define rep(i,n) for(ll i=0;i=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue,greater> #define all(x) (x).begin(),(x).end() #define CST(x) cout<; using vvl=vector>; using pl=pair; using vpl=vector; using vvpl=vector; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; //const ll dy[8]={-1,0,1,0,1,1,-1,-1}; //const ll dx[8]={0,-1,0,1,1,-1,1,-1}; template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } struct Edge { long long to; long long w; }; using Graph = vector>; /* LCA(G, root): 木 G に対する根を root として Lowest Common Ancestor を求める構造体 query(u,v): u と v の LCA を求める。計算量 O(logn) 前処理: O(nlogn)時間, O(nlogn)空間 */ struct LCA { vector> parent; // parent[k][u]:= u の 2^k 先の親 vector dist; // root からの距離 //vector> sumcost; LCA(const Graph &G, int root = 0) { init(G, root); } // 初期化 void init(const Graph &G, int root = 0) { int V = G.size(); int K = 1; while ((1 << K) < V) K++; parent.assign(K, vector(V, -1)); dist.assign(V, -1); //sumcost.assign(K, vector(V, 0)); dfs(G, root, -1, 0); for (int k = 0; k + 1 < K; k++) { for (int v = 0; v < V; v++) { if (parent[k][v] >= 0) { parent[k + 1][v] = parent[k][parent[k][v]]; //sumcost[k + 1][v] = sumcost[k][v]+sumcost[k][parent[k][v]]; } } } } // 根からの距離と1つ先の頂点を求める void dfs(const Graph &G, int v, int p, int d) { parent[0][v] = p; dist[v] = d; for (auto e : G[v]) { if (e.to != p) { //sumcost[0][e.to]=e.w; dfs(G, e.to, v, d + 1); } } } int query(int u, int v) { if (dist[u] < dist[v]) swap(u, v); // u の方が深いとする int K = parent.size(); // LCA までの距離を同じにする for (int k = 0; k < K; k++) { if ((dist[u] - dist[v])&(1<= 0; k--) { if (parent[k][u] != parent[k][v]) { u = parent[k][u]; v = parent[k][v]; } } return parent[0][u]; } /*ll getsumcost(int u, int v) { if (dist[u] < dist[v]) swap(u, v); // u の方が深いとする int K = parent.size(); ll ret=0; // LCA までの距離を同じにする for (int k = 0; k < K; k++) { if ((dist[u] - dist[v]) & (1<= 0; k--) { if (parent[k][u] != parent[k][v]) { ret=ret+sumcost[k][u]+sumcost[k][v]; u = parent[k][u]; v = parent[k][v]; } } ret=ret+sumcost[0][u]+sumcost[0][v]; return ret; }*/ int length(int u, int v) { return dist[u] + dist[v] - 2 * dist[query(u, v)]; } bool is_in(int u, int v, int a) { return length(u, a) + length(a, v) == length(u, v); } }; vl dp(200010); void dfs(vector> &g,ll v,ll par=-1){ for(auto p:g[v]){ if(p.to==par)continue; dp[p.to]=dp[v]+p.w; dfs(g,p.to,v); } } int main(){ ll n;cin >> n; vector> g(n); rep(i,n-1){ ll a,b,c;cin >> a >> b >> c;a--;b--; g[a].pb({b,c}); g[b].pb({a,c}); } LCA lc(g); dfs(g,0); ll q;cin >> q; while(q--){ ll s,t;cin >> s >> t;s--;t--; ll p=lc.query(s,t); cout << dp[s]+dp[t]-dp[p]*2 <