結果

問題 No.2618 除霊
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-01-27 03:12:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 204,020 KB
実行使用メモリ 18,080 KB
最終ジャッジ日時 2024-09-28 09:31:18
合計ジャッジ時間 23,282 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,064 KB
testcase_01 AC 6 ms
8,192 KB
testcase_02 AC 5 ms
8,064 KB
testcase_03 AC 6 ms
8,192 KB
testcase_04 AC 6 ms
8,064 KB
testcase_05 AC 5 ms
8,064 KB
testcase_06 AC 466 ms
17,152 KB
testcase_07 AC 446 ms
17,152 KB
testcase_08 AC 473 ms
17,280 KB
testcase_09 AC 487 ms
17,152 KB
testcase_10 AC 519 ms
17,280 KB
testcase_11 AC 437 ms
17,216 KB
testcase_12 AC 488 ms
17,152 KB
testcase_13 AC 420 ms
17,948 KB
testcase_14 AC 470 ms
17,820 KB
testcase_15 AC 388 ms
17,776 KB
testcase_16 AC 401 ms
17,604 KB
testcase_17 AC 450 ms
18,080 KB
testcase_18 AC 462 ms
17,600 KB
testcase_19 AC 409 ms
17,964 KB
testcase_20 AC 409 ms
17,800 KB
testcase_21 AC 455 ms
17,440 KB
testcase_22 AC 510 ms
18,056 KB
testcase_23 AC 446 ms
18,072 KB
testcase_24 AC 423 ms
17,836 KB
testcase_25 AC 440 ms
17,984 KB
testcase_26 AC 453 ms
17,416 KB
testcase_27 AC 400 ms
17,640 KB
testcase_28 AC 405 ms
17,888 KB
testcase_29 AC 435 ms
18,024 KB
testcase_30 AC 487 ms
17,952 KB
testcase_31 AC 496 ms
17,280 KB
testcase_32 AC 440 ms
17,536 KB
testcase_33 AC 437 ms
17,408 KB
testcase_34 AC 432 ms
17,024 KB
testcase_35 AC 464 ms
17,152 KB
testcase_36 AC 482 ms
17,536 KB
testcase_37 AC 451 ms
17,152 KB
testcase_38 AC 468 ms
17,408 KB
testcase_39 AC 476 ms
17,408 KB
testcase_40 AC 472 ms
17,280 KB
testcase_41 AC 507 ms
17,536 KB
testcase_42 AC 510 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N;
	cin >> N;
	std::vector<int> tr[200020] ;
	for (int i = 1; i < N; i ++) {
		int a, b;
		cin >> a >> b;
		tr[--a].push_back(--b);
		tr[b].push_back(a);
	}
	vector<int> ex(N, 0);
	vector<int> ne_h(N, 0);
	int M;
	cin >> M;
	for (int i = 0; i < M; i ++) {
		int a;
		cin >> a;
		ex[--a] = 1;
		for (auto v : tr[a]) {
			ne_h[v] = 1;
		}
		ne_h[a] = 1;
	}
	int sssu = accumulate(ne_h.begin(), ne_h.end(), 0);
	vector<int> ans(N, sssu), adj(N, 0);
	for (int i = 0; i < N; i ++) {
		if (!ne_h[i]) continue;
		ans[i] --;
		int fl = -1;
		for (auto v : tr[i]) {
			if (ex[v]) {
				if (fl != -1) {
					fl = -2;
				} else {
					fl = v;
				}
			}
		}
		if (fl >= 0) {
			ans[fl] --;
			if (!ex[i]) {
				adj[fl] --;
				ans[i] ++;
			}
		} else if (fl == -1) {
			adj[i] --;
		}
	}
	for (int i = 0; i < N; i ++) {
		for (auto v : tr[i]) {
			ans[i] += adj[v];
		}
		cout << ans[i] << endl;
	}
}
0