結果

問題 No.2618 除霊
ユーザー kwm_tkwm_t
提出日時 2024-01-28 16:25:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 1,714 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 205,712 KB
実行使用メモリ 17,336 KB
最終ジャッジ日時 2024-09-28 09:52:21
合計ジャッジ時間 19,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 371 ms
16,128 KB
testcase_07 AC 355 ms
16,128 KB
testcase_08 AC 370 ms
16,384 KB
testcase_09 AC 364 ms
16,128 KB
testcase_10 AC 366 ms
16,512 KB
testcase_11 AC 335 ms
16,272 KB
testcase_12 AC 355 ms
16,384 KB
testcase_13 AC 314 ms
17,148 KB
testcase_14 AC 335 ms
16,856 KB
testcase_15 AC 316 ms
16,764 KB
testcase_16 AC 325 ms
16,716 KB
testcase_17 AC 355 ms
17,336 KB
testcase_18 AC 350 ms
16,532 KB
testcase_19 AC 344 ms
17,224 KB
testcase_20 AC 325 ms
16,824 KB
testcase_21 AC 322 ms
16,476 KB
testcase_22 AC 350 ms
17,188 KB
testcase_23 AC 332 ms
17,076 KB
testcase_24 AC 327 ms
16,884 KB
testcase_25 AC 358 ms
17,248 KB
testcase_26 AC 337 ms
16,448 KB
testcase_27 AC 330 ms
16,796 KB
testcase_28 AC 344 ms
17,144 KB
testcase_29 AC 354 ms
17,092 KB
testcase_30 AC 366 ms
17,084 KB
testcase_31 AC 405 ms
16,512 KB
testcase_32 AC 363 ms
16,640 KB
testcase_33 AC 360 ms
16,568 KB
testcase_34 AC 350 ms
16,000 KB
testcase_35 AC 357 ms
16,384 KB
testcase_36 AC 380 ms
16,768 KB
testcase_37 AC 364 ms
16,232 KB
testcase_38 AC 368 ms
16,572 KB
testcase_39 AC 378 ms
16,720 KB
testcase_40 AC 375 ms
16,448 KB
testcase_41 AC 385 ms
16,640 KB
testcase_42 AC 387 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint998244353;
//const int mod = 998244353;
//using mint = modint1000000007;
//const int mod = 1000000007;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<vector<int>>to(n);
	rep(i, n - 1) {
		int a, b; cin >> a >> b;
		a--, b--;
		to[a].push_back(b);
		to[b].push_back(a);
	}
	vector<int>g(n);
	int m; cin >> m;
	rep(i, m) {
		int v; cin >> v;
		v--;
		g[v]++;
	}
	vector<int>cnt(n);//何匹に監視されているか
	rep(i, n) {
		if (!g[i]) continue;
		cnt[i]++;
		for (auto j : to[i]) cnt[j]++;
	}
	vector<int>c1(n);//gから距離1かつそれにのみ監視されているものの個数
	rep(i, n) {
		if (!g[i]) continue;
		for (auto j : to[i]) c1[i] += (cnt[j] == 1);
	}
	int cur = 0;
	rep(i, n)if (cnt[i])cur++;
	rep(i, n) {
		int ans = cur;
		if (cnt[i])ans--;
		for (auto j : to[i]) {
			if (!cnt[j])continue;
			int val = cnt[j] - g[i] - g[j];
			if (!val)ans--;
			if (g[j]) ans -= c1[j] - (1 == cnt[i]);
		}
		cout << ans << endl;
	}
	return 0;
}
0