結果

問題 No.763 Noelちゃんと木遊び
ユーザー らーゆらーゆ
提出日時 2024-05-06 22:00:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 726 ms
コンパイル使用メモリ 71,936 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-11-29 08:22:19
合計ジャッジ時間 3,735 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
17,536 KB
testcase_01 AC 31 ms
7,168 KB
testcase_02 AC 77 ms
8,800 KB
testcase_03 AC 50 ms
7,936 KB
testcase_04 AC 37 ms
7,296 KB
testcase_05 AC 49 ms
7,808 KB
testcase_06 AC 92 ms
9,472 KB
testcase_07 AC 88 ms
9,556 KB
testcase_08 AC 52 ms
7,936 KB
testcase_09 AC 35 ms
7,296 KB
testcase_10 AC 15 ms
6,528 KB
testcase_11 AC 93 ms
9,600 KB
testcase_12 AC 84 ms
9,084 KB
testcase_13 AC 81 ms
9,152 KB
testcase_14 AC 71 ms
8,704 KB
testcase_15 AC 48 ms
7,936 KB
testcase_16 AC 10 ms
6,144 KB
testcase_17 AC 49 ms
7,936 KB
testcase_18 AC 89 ms
9,600 KB
testcase_19 AC 83 ms
9,216 KB
testcase_20 AC 80 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using namespace std;
#include<iostream>
#include<vector>
#include<algorithm>
int dp[100009][2];
vector<int> E[100009];
void dfs(int cu, int pa = -1) {
	dp[cu][1] = 1;
	for (auto to : E[cu]) if(to!=pa){
		dfs(to, cu);
		dp[cu][0] += max(dp[to][0], dp[to][1]);
		dp[cu][1] += max(dp[to][0], dp[to][1] - 1);
	}
}
int main() {
	int N;
	cin >> N;
	for (int i = 0; i < N - 1; i++) {
		int x, y;
		cin >> x >> y;
		x--, y--;
		E[x].push_back(y);
		E[y].push_back(x);
	}
	dfs(0);
	cout << max(dp[0][0], dp[0][1]);
}
0