#include "bits/stdc++.h" using namespace std; #define int long long #define FOR(i, a, b) for(int i=(a);i<(b);i++) #define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--) #define REP(i, n) for(int i=0; i<(n); i++) #define RREP(i, n) for(int i=(n-1); i>=0; i--) #define ALL(a) (a).begin(),(a).end() #define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end()); #define CONTAIN(a, b) find(ALL(a), (b)) != (a).end() #define array2(type, x, y) array, x> #define vector2(type) vector > #define out(...) printf(__VA_ARGS__) int dxy[] = {0, 1, 0, -1, 0}; /*================================*/ struct Leaf { int parent, child; int w = -1; Leaf(int p, int c, int w=-1): parent(p), child(c), w(w) {}; }; class Tree { int n; vector< vector > E; Tree(int n): n(n) { E = vector< vector >(n); } void add_node(int u, int v, int w) { E[u].push_back(*new Leaf(u, v, w)); E[v].push_back(*new Leaf(v, u, w)); } }; struct Edge { int src, to, w; Edge(int u, int v, int w): src(u), to(v), w(w) {}; }; int N,Q; vector< vector > E(111111); int W[111111], P[111111][20], D[111111]; void dfs(int parent, int i, int weight, int depth) { P[i][0] = parent; W[i] = weight; D[i] = depth; for (auto e : E[i]) { if (e.to == parent) continue; dfs(i, e.to, weight + e.w, depth+1); } } int lca(int u, int v) { // depth調整 if (D[u] > D[v]) swap(u, v); RFOR(i, 0, 20) { if ((D[v] - D[u])&(1<>N; REP(i,N)REP(j,20) P[i][j] = -1; int u,v,w; REP(i, N-1) { cin >> u >> v >> w; E[u].push_back(*new Edge(u,v,w)); E[v].push_back(*new Edge(v,u,w)); } // euler tour -> weight, depth, parent dfs(-1, 0, 0, 0); // doubling FOR(j, 1, 20) { REP(i, N) { if (P[i][j-1] == -1) continue; P[i][j] = P[P[i][j-1]][j-1]; } } cin >> Q; int x,y,z; REP(i, Q) { cin>>x>>y>>z; int ans = W[x] + W[y] + W[z] - W[lca(x, y)] - W[lca(y, z)] - W[lca(z, x)]; out("%lld\n", ans); } return 0; }