結果

問題 No.763 Noelちゃんと木遊び
ユーザー ttkkggwwttkkggww
提出日時 2020-03-31 22:18:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 1,587 ms
コンパイル使用メモリ 170,640 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-06-25 07:02:36
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
18,048 KB
testcase_01 AC 28 ms
5,632 KB
testcase_02 AC 67 ms
8,704 KB
testcase_03 AC 45 ms
6,940 KB
testcase_04 AC 31 ms
6,016 KB
testcase_05 AC 42 ms
7,040 KB
testcase_06 AC 85 ms
9,856 KB
testcase_07 AC 84 ms
9,728 KB
testcase_08 AC 48 ms
7,168 KB
testcase_09 AC 30 ms
5,888 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 86 ms
10,112 KB
testcase_12 AC 73 ms
9,344 KB
testcase_13 AC 68 ms
9,216 KB
testcase_14 AC 62 ms
8,576 KB
testcase_15 AC 42 ms
7,040 KB
testcase_16 AC 8 ms
5,376 KB
testcase_17 AC 44 ms
6,944 KB
testcase_18 AC 82 ms
9,984 KB
testcase_19 AC 73 ms
9,344 KB
testcase_20 AC 75 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n;
vector<vector<int>> M;
ll dp[101010][2];
//dp[i][j]j..切るか切らないかの時の数

void dfs(int now,int p = -1)
{
	for(auto i:M[now])
	{
		if(p!=i)
		{
			dfs(i,now);
			dp[now][0] += max(dp[i][0]-1,dp[i][1]);
			dp[now][1] += max(dp[i][0],dp[i][1]);
		}
	}	
}
int main()
{
	cin >> n;	
	M = vector<vector<int>>(n);
	for(int i = 0;i<n-1;++i)
	{
		int x,y;
		cin >> x >> y;
		x--;y--;
		M[x].push_back(y);
		M[y].push_back(x);
	}
	for(int i = 0;i<n+1;i++){dp[i][0]++;}
	dfs(0);
	cout<<max(dp[0][1],dp[0][0])<<endl;
	return 0;
}
0