#include #pragma GCC optimize("Ofast") #define _GLIBCXX_DEBUG using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll ILL=1167167167167167167; const int INF=1000000000; const ll mod=1e9+7; #define rep(i,a) for (ll i=0;i using _pq = priority_queue, greater>; template ll LB(vector &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template ll UB(vector &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template bool chmax(T &a,const T &b){if(a void So(vector &v) {sort(v.begin(),v.end());} template void Sore(vector &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} void yneos(bool a){if(a) cout<<"YES\n"; else cout<<"NO\n";} // rainy ~ 雨に打たれて ~ int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N,K; cin>>N>>K; vector> G(N); rep(i,N-1){ int a,b; cin>>a>>b; a--,b--; G[a].push_back(b); G[b].push_back(a); } vector D(K); set var; rep(i,K) cin>>D[i],D[i]--,var.insert(D[i]); stack s; vector in(N,-2),out(N); int ind=-1; s.push(D[0]); rep(i,N*2){ int a=s.top(); s.pop(); if(a>=N){ out[a-N]=ind; }else{ in[a]=ind; s.push(a+N); if(var.count(a)) ind=a; for(auto x:G[a]){ if(in[x]==-2){ in[x]=-3; s.push(x); } } } } vector seen(N); vector dis(N),ans(N,INF); queue q; ind=D[0]; rep(roop,3){ rep(i,N) seen[i]=-1; q.push(ind); seen[ind]=0; while(!q.empty()){ ind=q.front(); q.pop(); for(auto x:G[ind]){ if(in[x]!=out[x]&&seen[x]==-1){ seen[x]=seen[ind]+1; chmax(dis[x],seen[x]); q.push(x); } } } } _pq> pq; int tmp=-2; rep(i,N) if(in[i]!=out[i]) tmp+=2; rep(i,K) ans[D[i]]=tmp-dis[D[i]],pq.push({ans[D[i]],D[i]}); while(!pq.empty()){ ind=pq.top().second; pq.pop(); for(auto x:G[ind]){ if(chmin(ans[x],ans[ind]+1)){ pq.push({ans[x],x}); } } } rep(i,N){ cout<