結果

問題 No.2618 除霊
ユーザー shobonvipshobonvip
提出日時 2024-01-26 22:44:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 2,193 bytes
コンパイル時間 5,054 ms
コンパイル使用メモリ 264,572 KB
実行使用メモリ 19,888 KB
最終ジャッジ日時 2024-01-26 22:44:32
合計ジャッジ時間 17,053 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 3 ms
6,676 KB
testcase_02 AC 3 ms
6,676 KB
testcase_03 AC 3 ms
6,676 KB
testcase_04 AC 3 ms
6,676 KB
testcase_05 AC 3 ms
6,676 KB
testcase_06 AC 204 ms
18,300 KB
testcase_07 AC 203 ms
18,124 KB
testcase_08 AC 230 ms
18,716 KB
testcase_09 AC 259 ms
18,488 KB
testcase_10 AC 272 ms
19,056 KB
testcase_11 AC 197 ms
18,268 KB
testcase_12 AC 223 ms
18,668 KB
testcase_13 AC 171 ms
18,948 KB
testcase_14 AC 232 ms
19,540 KB
testcase_15 AC 188 ms
18,672 KB
testcase_16 AC 173 ms
18,632 KB
testcase_17 AC 228 ms
19,552 KB
testcase_18 AC 226 ms
19,140 KB
testcase_19 AC 194 ms
19,076 KB
testcase_20 AC 173 ms
18,744 KB
testcase_21 AC 195 ms
18,716 KB
testcase_22 AC 215 ms
19,888 KB
testcase_23 AC 170 ms
19,056 KB
testcase_24 AC 198 ms
18,840 KB
testcase_25 AC 228 ms
19,460 KB
testcase_26 AC 219 ms
19,044 KB
testcase_27 AC 188 ms
18,748 KB
testcase_28 AC 172 ms
19,108 KB
testcase_29 AC 208 ms
19,432 KB
testcase_30 AC 261 ms
19,780 KB
testcase_31 AC 229 ms
18,712 KB
testcase_32 AC 182 ms
18,576 KB
testcase_33 AC 226 ms
18,644 KB
testcase_34 AC 196 ms
18,012 KB
testcase_35 AC 208 ms
18,436 KB
testcase_36 AC 226 ms
18,944 KB
testcase_37 AC 224 ms
18,452 KB
testcase_38 AC 235 ms
18,992 KB
testcase_39 AC 264 ms
19,152 KB
testcase_40 AC 239 ms
18,872 KB
testcase_41 AC 248 ms
19,336 KB
testcase_42 AC 248 ms
19,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	int n; cin >> n;
	vector<int> a(n-1), b(n-1);
	rep(i,0,n-1){
		cin >> a[i] >> b[i];
		a[i]--;
		b[i]--;
	}
	int m; cin >> m;
	vector<int> v(m);
	vector<bool> obake(n);
	rep(i,0,m){
		cin >> v[i];
		v[i]--;
		obake[v[i]] = 1;
	}

	vector ikeru(n, vector<int>(0));
	rep(i,0,n-1){
		ikeru[a[i]].push_back(b[i]);
		ikeru[b[i]].push_back(a[i]);
	}

	vector<int> cnt(n);
	rep(i,0,n){
		if (obake[i]){
			cnt[i]++;
			for (int j: ikeru[i]){
				cnt[j]++;
			}
		}
	}

	vector<int> ans(n);
	vector<int> less2(n);

	rep(i,0,n){
		if (obake[i]){
			for (int j: ikeru[i]){
				if (cnt[j] < 2){
					less2[i]++;
				}
			}
		}
	}

	int base = 0;
	rep(i,0,n){
		if (cnt[i] > 0) base++;
	}

	rep(i,0,n){
		if (obake[i]){
			ans[i] += less2[i];
			ans[i] += 1;
			for (int j: ikeru[i]){
				if (obake[j]){
					ans[i] += less2[j];
					if (cnt[j] == 2){
						ans[i] += 1;
					}
				}
			}
		}else{
			int obakecount = 0;
			for (int j: ikeru[i]){
				if (obake[j]){
					obakecount++;
					ans[i] += less2[j];
					if (cnt[j] == 1){
						ans[i]++;
					}
				}
			}

			if (obakecount >= 2){
				ans[i]++;
			}
		}
		cout << base - ans[i] << '\n';
	}
}

0