結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
17,536 KB
testcase_01 AC 27 ms
7,168 KB
testcase_02 AC 57 ms
8,928 KB
testcase_03 AC 40 ms
7,936 KB
testcase_04 AC 30 ms
7,168 KB
testcase_05 AC 38 ms
7,984 KB
testcase_06 AC 70 ms
9,600 KB
testcase_07 AC 71 ms
9,344 KB
testcase_08 AC 42 ms
8,064 KB
testcase_09 AC 28 ms
7,168 KB
testcase_10 AC 14 ms
6,400 KB
testcase_11 AC 75 ms
9,472 KB
testcase_12 AC 67 ms
9,216 KB
testcase_13 AC 66 ms
9,088 KB
testcase_14 AC 56 ms
8,844 KB
testcase_15 AC 39 ms
7,808 KB
testcase_16 AC 9 ms
6,272 KB
testcase_17 AC 40 ms
7,936 KB
testcase_18 AC 70 ms
9,600 KB
testcase_19 AC 64 ms
9,216 KB
testcase_20 AC 65 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