結果

問題 No.2618 除霊
ユーザー HaaHaa
提出日時 2024-01-26 22:42:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 1,670 bytes
コンパイル時間 1,641 ms
コンパイル使用メモリ 173,140 KB
実行使用メモリ 21,912 KB
最終ジャッジ日時 2024-09-28 08:38:48
合計ジャッジ時間 22,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 461 ms
19,840 KB
testcase_07 AC 458 ms
19,960 KB
testcase_08 AC 487 ms
20,596 KB
testcase_09 AC 494 ms
20,352 KB
testcase_10 AC 507 ms
21,248 KB
testcase_11 AC 411 ms
19,480 KB
testcase_12 AC 480 ms
19,456 KB
testcase_13 AC 406 ms
20,204 KB
testcase_14 AC 469 ms
21,540 KB
testcase_15 AC 389 ms
19,820 KB
testcase_16 AC 431 ms
19,772 KB
testcase_17 AC 458 ms
21,300 KB
testcase_18 AC 472 ms
21,252 KB
testcase_19 AC 427 ms
20,300 KB
testcase_20 AC 414 ms
20,016 KB
testcase_21 AC 420 ms
20,304 KB
testcase_22 AC 462 ms
21,912 KB
testcase_23 AC 418 ms
20,520 KB
testcase_24 AC 405 ms
20,072 KB
testcase_25 AC 470 ms
21,096 KB
testcase_26 AC 458 ms
21,036 KB
testcase_27 AC 430 ms
19,868 KB
testcase_28 AC 433 ms
20,464 KB
testcase_29 AC 459 ms
21,196 KB
testcase_30 AC 498 ms
21,820 KB
testcase_31 AC 481 ms
19,840 KB
testcase_32 AC 458 ms
20,096 KB
testcase_33 AC 463 ms
20,096 KB
testcase_34 AC 434 ms
19,584 KB
testcase_35 AC 464 ms
20,096 KB
testcase_36 AC 491 ms
20,736 KB
testcase_37 AC 497 ms
20,352 KB
testcase_38 AC 526 ms
20,992 KB
testcase_39 AC 514 ms
20,992 KB
testcase_40 AC 498 ms
20,992 KB
testcase_41 AC 528 ms
21,376 KB
testcase_42 AC 506 ms
21,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T &x, const T &y){return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T &x, const T &y){return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    int n; cin >> n;
    VVI g(n);
    int a, b;
    REP(i,n-1){
        cin >> a >> b;
        a--, b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    int m; cin >> m;
    VI v(m); REP(i,m) cin >> v[i], v[i]--;
    VI p(n,-1);
    REP(i,m) p[v[i]]=i;
    VI f(n,-1);
    REP(i,m){
        if(f[v[i]]==-1)
            f[v[i]]=v[i];
        else if(f[v[i]]>=0)
            f[v[i]]=-2;
        else
            f[v[i]]--;
        for(auto to:g[v[i]]){
            if(f[to]==-1)
                f[to]=v[i];
            else if(f[to]>=0)
                f[to]=-2;
            else
                f[to]--;
        }
    }
    int def=0;
    VI c(n,0);
    REP(i,n){
        if(f[i]!=-1)
            def++;
        if(f[i]>=0)
            c[f[i]]++;
    }
    REP(i,n){
        int ans=def;
        int cnt=0;
        if(p[i]!=-1)
            cnt++;
        ans-=c[i];
        for(auto to:g[i]){
            if(p[to]!=-1)
                cnt++;
            ans-=c[to];
        }
        if(cnt>=2)
            ans--;
        if(p[i]!=-1){
            for(auto to:g[i]){
                if(p[to]!=-1&&f[to]==-2)
                    ans--;
            }
        }
        cout << ans << endl;
    }
    return 0;
}
0