結果

問題 No.2618 除霊
ユーザー Nzt3Nzt3
提出日時 2024-02-02 17:01:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,253 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 206,192 KB
実行使用メモリ 17,276 KB
最終ジャッジ日時 2024-09-28 10:36:47
合計ジャッジ時間 10,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 111 ms
16,256 KB
testcase_07 AC 114 ms
16,152 KB
testcase_08 AC 155 ms
16,384 KB
testcase_09 AC 138 ms
16,128 KB
testcase_10 AC 145 ms
16,384 KB
testcase_11 AC 110 ms
16,404 KB
testcase_12 AC 140 ms
16,424 KB
testcase_13 AC 96 ms
17,020 KB
testcase_14 AC 111 ms
16,860 KB
testcase_15 AC 84 ms
16,892 KB
testcase_16 AC 91 ms
16,840 KB
testcase_17 AC 107 ms
17,216 KB
testcase_18 AC 123 ms
16,536 KB
testcase_19 AC 90 ms
17,096 KB
testcase_20 AC 78 ms
16,952 KB
testcase_21 AC 92 ms
16,452 KB
testcase_22 AC 104 ms
17,192 KB
testcase_23 AC 90 ms
17,204 KB
testcase_24 AC 89 ms
16,884 KB
testcase_25 AC 102 ms
17,116 KB
testcase_26 AC 96 ms
16,444 KB
testcase_27 AC 91 ms
16,900 KB
testcase_28 AC 89 ms
17,276 KB
testcase_29 AC 105 ms
17,220 KB
testcase_30 AC 110 ms
17,080 KB
testcase_31 AC 124 ms
16,384 KB
testcase_32 AC 93 ms
16,764 KB
testcase_33 AC 103 ms
16,736 KB
testcase_34 AC 104 ms
16,000 KB
testcase_35 AC 117 ms
16,376 KB
testcase_36 AC 121 ms
16,692 KB
testcase_37 AC 117 ms
16,384 KB
testcase_38 AC 124 ms
16,640 KB
testcase_39 AC 129 ms
16,600 KB
testcase_40 AC 129 ms
16,384 KB
testcase_41 AC 139 ms
16,640 KB
testcase_42 AC 128 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector G(N,vector(0,0));
  for(int i=0;i<N-1;i++){
    int A,B;
    cin>>A>>B;
    --A,--B;
    G[A].push_back(B);
    G[B].push_back(A);
  }
  vector ghost(N,0);
  int M;
  cin>>M;
  for(int i=0;i<M;i++){
    int t;
    cin>>t;
    ghost[t-1]=1;
  }
  vector cnt(N,0);
  for(int i=0;i<N;i++){
    if(ghost[i]){
      cnt[i]+=1;
      for(int j:G[i]){
        cnt[j]+=1;
      }
    }
  }
  vector g_erase(N,0);
  for(int i=0;i<N;i++){
    if(ghost[i]){
      for(int j:G[i]){
        if(cnt[j]==1){
          g_erase[i]+=1;
        }
      }
    }
  }
  int base=0;
  for(int i=0;i<N;i++){
    if(cnt[i]!=0)base+=1;
  }
  
  for(int i=0;i<N;i++){
    if(cnt[i]==0){
      cout<<base<<'\n';
      continue;
    }
    int ans=base-1;
    if(ghost[i]){
      ans-=g_erase[i];
      for(int j:G[i]){
        if(ghost[j]){
          ans-=g_erase[j];
          if(cnt[j]==2)ans-=1;
        }
      }
    }else{
      int t=0;
      if(cnt[i]==1)t=1;
      for(int j:G[i]){
        if(ghost[j]){
          ans-=g_erase[j]-t;
          if(cnt[j]==1)ans-=1;
        }
      }
    }
    cout<<ans<<'\n';
  }
  
}
0