#include using namespace std; #define inf INT_MAX #define INF LLONG_MAX #define ll long long #define ull unsigned long long #define M (int)(1e9+7) #define P pair #define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++) #define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--) #define rep(i,n) FOR(i,0,n) #define rrep(i,n) RFOR(i,n,0) #define all(a) a.begin(),a.end() const int vx[4] = {0,1,0,-1}; const int vy[4] = {1,0,-1,0}; #define F first #define S second #define PB push_back #define EB emplace_back #define int ll #define vi vector #define IP pair #define PI pair #define PP pair #define Yes(f){cout<<(f?"Yes":"No")< struct edge { int src, to; T cost; edge(int to, T cost) : src(-1), to(to), cost(cost) {} edge(int src, int to, T cost) : src(src), to(to), cost(cost) {} edge &operator=(const int &x) { to = x; return *this; } operator int() const { return to; } }; template< typename T > using Edges = vector< edge< T > >; template< typename T > using WG = vector< Edges< T > >; using UG = vector< vector< int > >; template< typename T > using Matrix = vector< vector< T > >; struct LCA{ const int MAX_LOG_V = 50; vector > G,parent; int root=0,V; vector depth; LCA(){} LCA(int V):V(V){init();} LCA(int V,WG es):V(V){init();rep(i,V){for(auto e:es[i]){G[i].PB(e.to);}}} void init(){ for(int i=0;i<(int)G.size();i++) G[i].clear(); G.clear(); for(int i=0;i<(int)parent.size();i++) parent[i].clear(); parent.clear(); depth.clear(); G.resize(V); parent.resize(MAX_LOG_V,vector(V)); depth.resize(V); } void add(int u,int v){ G[u].PB(v); } void dfs(int v,int p,int d){ parent[0][v]=p; depth[v]=d; for(int i=0;i<(int)G[v].size();i++){ if(G[v][i]!=p) dfs(G[v][i],v,d+1); } } void construct(){ dfs(root,-1,0); for(int k=0;k+1depth[v]) swap(u,v); for(int k=0;k>k&1){ v=parent[k][v]; } } if(u==v) return u; for(int k=MAX_LOG_V-1;k>=0;k--){ if(parent[k][u]!=parent[k][v]){ u=parent[k][u]; v=parent[k][v]; } } return parent[0][u]; } }; signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout<>n; WG es(n); rep(i,n-1){ int a,b; cin>>a>>b; es[a].PB(edge(b,0)); es[b].PB(edge(a,0)); } LCA lca(n,es); lca.construct(); vi w(n); rep(i,n){ cin>>w[i]; } vi weight(n,-1); queue

q; q.push(P(0,-1)); while(q.size()){ P p=q.front(); q.pop(); if(p.S>=0)weight[p.F]=weight[p.S]+w[p.F]; else weight[p.F]=w[p.F]; for(auto e:es[p.F]){ if(weight[e.to]==-1){ q.push(P(e.to,p.F)); } } } /* rep(i,n){ cout<>t; while(t--){ int a,b,c; cin>>a>>b>>c; int d=lca.lca(a,b); ans+=c*(weight[a]+weight[b]-2*weight[d]+w[d]); //cout<