結果

問題 No.1718 Random Squirrel
ユーザー 👑 potato167
提出日時 2021-10-24 02:14:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 2,681 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 216,116 KB
最終ジャッジ日時 2025-01-25 05:01:20
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#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<a;i++)
template<class T> using _pq = priority_queue<T, vector<T>, greater<T>>;
template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();}
template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();}
template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;}
template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}else return 0;}
template<class T> void So(vector<T> &v) {sort(v.begin(),v.end());}
template<class T> void Sore(vector<T> &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<vector<int>> 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<int> D(K);
    set<int> var;
    rep(i,K) cin>>D[i],D[i]--,var.insert(D[i]);
    stack<int> s;
    vector<int> 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<int> seen(N);
    vector<int> dis(N),ans(N,INF);
    queue<int> 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<pair<int,int>> 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<<ans[i]<<"\n";
    }
}

0