結果

問題 No.2618 除霊
ユーザー inksamuraiinksamurai
提出日時 2024-01-27 03:34:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,470 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 206,092 KB
実行使用メモリ 18,104 KB
最終ジャッジ日時 2024-09-28 09:31:46
合計ジャッジ時間 11,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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 144 ms
16,896 KB
testcase_07 AC 148 ms
16,988 KB
testcase_08 AC 160 ms
17,152 KB
testcase_09 AC 154 ms
16,896 KB
testcase_10 AC 165 ms
17,240 KB
testcase_11 AC 121 ms
17,172 KB
testcase_12 AC 153 ms
17,256 KB
testcase_13 AC 111 ms
17,920 KB
testcase_14 AC 128 ms
17,624 KB
testcase_15 AC 103 ms
17,660 KB
testcase_16 AC 106 ms
17,608 KB
testcase_17 AC 118 ms
17,976 KB
testcase_18 AC 127 ms
17,436 KB
testcase_19 AC 115 ms
17,992 KB
testcase_20 AC 103 ms
17,600 KB
testcase_21 AC 116 ms
17,260 KB
testcase_22 AC 126 ms
17,956 KB
testcase_23 AC 110 ms
18,104 KB
testcase_24 AC 110 ms
17,780 KB
testcase_25 AC 125 ms
18,012 KB
testcase_26 AC 125 ms
17,216 KB
testcase_27 AC 108 ms
17,696 KB
testcase_28 AC 112 ms
18,040 KB
testcase_29 AC 123 ms
17,988 KB
testcase_30 AC 130 ms
17,980 KB
testcase_31 AC 165 ms
17,152 KB
testcase_32 AC 149 ms
17,536 KB
testcase_33 AC 168 ms
17,536 KB
testcase_34 AC 151 ms
16,844 KB
testcase_35 AC 170 ms
17,080 KB
testcase_36 AC 171 ms
17,536 KB
testcase_37 AC 160 ms
17,152 KB
testcase_38 AC 168 ms
17,464 KB
testcase_39 AC 166 ms
17,536 KB
testcase_40 AC 163 ms
17,112 KB
testcase_41 AC 165 ms
17,544 KB
testcase_42 AC 159 ms
17,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define rng(i,c,n) for(int i=c;i<n;i++)
#define fi first
#define se second
#define pb push_back
#define all(a) a.begin(), a.end()
#define sz(a) ((int) a.size())
#define vec(...) vector<__VA_ARGS__>
#define _3PawRSC ios::sync_with_stdio(0),cin.tie(0)
typedef long long ll;
using vi=vector<int>;
using pii=pair<int,int>;
void print(){cout<<'\n';}
template<class h,class...t>
void print(const h&v,const t&...u){cout<<v<<' ',print(u...);}

void slv(){
	int n;
	cin>>n;
	vec(vi) adj(n);
	rep(i,n-1){
		int u,v;
		cin>>u>>v;
		u-=1,v-=1;
		adj[u].pb(v),adj[v].pb(u);
	}
	vi f(n);
	int k;
	cin>>k;
	rep(i,k){
		int v;
		cin>>v;
		v-=1;
		f[v]=1;
	}
	vi qs(n);
	rep(v,n){
		qs[v]+=f[v];
		for(auto u:adj[v]){
			qs[v]+=f[u];
		}
	}
	vi g(n);
	rep(v,n){
		if(!f[v]) continue;
		for(auto u:adj[v]){
			if(qs[u]==1){
				g[v]+=1;
			}
		}
	}
	int full=0;
	rep(v,n){
		full+=qs[v]>0;
	}
	// print(full);
	vi pns(n);
	rep(v,n)
	{
		// int v=4;
		int now=full;
		if(!f[v]){
			now-=(qs[v]>0);
			for(auto u:adj[v]){
				if(f[u]){
					now-=g[u];
					now-=1;
					now+=(qs[u]>1);
					now+=(qs[v]==1);
				}
			}
		}else{
			now-=1;
			for(auto u:adj[v]){
				if(f[u]){
					now-=g[u];
					now-=1;
					now+=(qs[u]>2);
				}else{
					now-=1;
					now+=(qs[u]>1);
				}
			}
		}
		pns[v]=now;
	}
	rep(v,n) print(pns[v]);
}

signed main(){
_3PawRSC;
	slv();
}
0