#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll N, Q, Sum, CostTo1, C[202020], R[202020];
vector<pair<ll,ll>> G[202020];
int S[202020], U[202020];
void TreeDP(int v, int b=-1, ll up=0, ll dw=0){
for(auto [i,w] : G[v]) if(i == b) CostTo1 += w, up += w;
C[v] = dw - up;
for(auto [i,w] : G[v]) if(i != b) TreeDP(i, v, up, dw+w);
}
ll CostToRoot(int root){
return CostTo1 + C[root];
}
vector<ll> CostFromRoot(int root){
priority_queue<ll> pq;
function<pair<ll,ll>(int,int)> dfs = [&](int v, int b) -> pair<ll,ll> {
vector<pair<ll,ll>> ch;
for(auto [i,w] : G[v]){
if(i == b || U[i]) continue;
auto [t1,t2] = dfs(i, v);
ch.emplace_back(t1 + w, i);
if(t2 > 0) ch.emplace_back(t2 + w, i);
}
if(ch.empty()) return {0LL, 0LL};
sort(ch.begin(), ch.end(), greater<>());
int mx2 = -1;
for(int i=1; i<ch.size(); i++) if(ch[i].second != ch[0].second) { mx2 = i; break; }
for(int i=1; i<ch.size(); i++) if(i != mx2) pq.push(ch[i].first);
return {ch[0].first, mx2 != -1 ? ch[mx2].first : 0LL};
};
auto mx = dfs(root, -1);
vector<ll> res = {mx.first, mx.second};
while(!pq.empty()) res.push_back(pq.top()), pq.pop();
return res;
}
int GetSize(int v, int b=-1){
S[v] = 1;
for(auto [i,w] : G[v]) if(i != b && !U[i]) S[v] += GetSize(i, v);
return S[v];
}
int GetCent(int v, int tot, int b=-1){
for(auto [i,w] : G[v]) if(i != b && !U[i] && S[i]*2 > tot) return GetCent(i, tot, v);
return v;
}
void GetAnswer(int v=1){
v = GetCent(v, GetSize(v));
auto vec = CostFromRoot(v); U[v] = 1;
if(vec[1] > 0){
ll now = CostToRoot(v) + vec[0];
for(int k=2; k<=N; k++){
if(k <= vec.size()) now += vec[k-1];
R[k] = min(R[k], Sum - now);
}
}
for(auto [i,w] : G[v]) if(!U[i]) GetAnswer(i);
}
int main(){
ios_base::sync_with_stdio(false); cin.tie(nullptr);
cin >> N;
for(int i=1; i<N; i++){
int a, b, c, d; cin >> a >> b >> c >> d; Sum += c + d;
G[a].emplace_back(b, c); G[b].emplace_back(a, d);
}
TreeDP(1);
memset(R, 0x3f, sizeof R);
R[1] = Sum - CostTo1 - *max_element(C+1, C+N+1);
GetAnswer();
cin >> Q;
for(int i=1; i<=Q; i++){
int t; cin >> t;
cout << R[t] << "\n";
}
}