#include #include #include #include #include #define _USE_MATH_DEFINES #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() const int INF = 0x3f3f3f3f; const long long LINF = 0x3f3f3f3f3f3f3f3fLL; const double EPS = 1e-8; const int MOD = 1000000007; // 998244353; const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; /*-------------------------------------------------*/ using CostType = long long; struct Edge { int src, dst; CostType cost; Edge(int src, int dst, CostType cost = 0) : src(src), dst(dst), cost(cost) {} inline bool operator<(const Edge &rhs) const { return cost != rhs.cost ? cost < rhs.cost : dst != rhs.dst ? dst < rhs.dst : src < rhs.src; } inline bool operator<=(const Edge &rhs) const { return cost <= rhs.cost; } inline bool operator>(const Edge &rhs) const { return cost != rhs.cost ? cost > rhs.cost : dst != rhs.dst ? dst > rhs.dst : src > rhs.src; } inline bool operator>=(const Edge &rhs) const { return cost >= rhs.cost; } }; struct LCA { vector depth; vector dist; LCA(const vector > &graph) : graph(graph) { n = graph.size(); depth.resize(n); dist.resize(n); while ((1 << table_h) <= n) ++table_h; parent.resize(table_h, vector(n)); } void build(int root = 0) { dfs(-1, root, 0, 0); for (int i = 0; i + 1 < table_h; ++i) REP(ver, n) { parent[i + 1][ver] = (parent[i][ver] == -1 ? -1 : parent[i][parent[i][ver]]); } } int query(int u, int v) { if (depth[u] > depth[v]) swap(u, v); REP(i, table_h) { if ((depth[v] - depth[u]) >> i & 1) v = parent[i][v]; } if (u == v) return u; for (int i = table_h - 1; i >= 0; --i) { if (parent[i][u] != parent[i][v]) { u = parent[i][u]; v = parent[i][v]; } } return parent[0][u]; } CostType distance(int u, int v) { return dist[u] + dist[v] - dist[query(u, v)] * 2; } private: int n, table_h = 1; vector > graph; vector > parent; void dfs(int par, int ver, int now_depth, CostType now_dist) { depth[ver] = now_depth; dist[ver] = now_dist; parent[0][ver] = par; for (const Edge &e : graph[ver]) { if (e.dst != par) dfs(ver, e.dst, now_depth + 1, now_dist + e.cost); } } }; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); // freopen("input.txt", "r", stdin); int n; cin >> n; vector > graph(n); REP(_, n - 1) { int u, v, w; cin >> u >> v >> w; graph[u].emplace_back(u, v, w); graph[v].emplace_back(v, u, w); } LCA lca(graph); lca.build(); int q; cin >> q; while (q--) { vector xyz(3); REP(i, 3) cin >> xyz[i]; sort(ALL(xyz)); long long ans = LINF; do { int l = lca.query(xyz[0], xyz[1]); long long tmp = 0; REP(i, 3) tmp += lca.distance(xyz[i], l); ans = min(ans, tmp); } while (next_permutation(ALL(xyz))); cout << ans << '\n'; } return 0; }