//#define _GLIBCXX_DEBUG #include using namespace std; #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater>; const int INF = 0xccccccc; const ll LINF = 0xcccccccccccccccLL; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} //head int main() { ios::sync_with_stdio(false); cin.tie(0); int n, k; cin >> n >> k; vector>> G(n+k); rep(i, n-1) { int a, b, c; cin >> a >> b >> c; a--; b--; G[a].emplace_back(b, c); G[b].emplace_back(a, c); } rep(i, k) { int m, p; cin >> m >> p; rep(j, m) { int x; cin >> x; x--; G[x].emplace_back(n+i, p); G[n+i].emplace_back(x, 0); } } int q; cin >> q; while(q--) { int u, v; cin >> u >> v; u--; v--; PQG> que; que.emplace(0, u); vector dist(n+k, LINF); dist[u] = 0; while(not que.empty()) { auto [d, now] = que.top(); que.pop(); if(dist[now] != d) continue; for(auto [to, c]:G[now]) { if(chmin(dist[to], d+c)) { que.emplace(d+c, to); } } } cout << dist[v] << '\n'; } }