結果

問題 No.763 Noelちゃんと木遊び
ユーザー chocoruskchocorusk
提出日時 2018-12-11 01:15:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 1,654 ms
コンパイル使用メモリ 98,832 KB
実行使用メモリ 17,476 KB
最終ジャッジ日時 2024-09-24 17:33:09
合計ジャッジ時間 2,967 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
17,476 KB
testcase_01 AC 27 ms
7,040 KB
testcase_02 AC 68 ms
8,892 KB
testcase_03 AC 45 ms
7,936 KB
testcase_04 AC 33 ms
7,424 KB
testcase_05 AC 47 ms
7,808 KB
testcase_06 AC 85 ms
9,600 KB
testcase_07 AC 79 ms
9,360 KB
testcase_08 AC 47 ms
7,916 KB
testcase_09 AC 32 ms
7,168 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 84 ms
9,800 KB
testcase_12 AC 72 ms
9,216 KB
testcase_13 AC 75 ms
9,412 KB
testcase_14 AC 64 ms
8,704 KB
testcase_15 AC 45 ms
7,808 KB
testcase_16 AC 10 ms
6,940 KB
testcase_17 AC 45 ms
7,808 KB
testcase_18 AC 81 ms
9,668 KB
testcase_19 AC 78 ms
9,288 KB
testcase_20 AC 75 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <iostream>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
vector<int> g[100000];
int dp[2][100000];
bool used[100000];
void dfs(int x){
	used[x]=1;
	dp[1][x]=1;
	for(auto y:g[x]){
		if(!used[y]){
			dfs(y);
			dp[1][x]+=dp[0][y];
			dp[0][x]+=max(dp[0][y], dp[1][y]);
		}
	}
}
int main()
{
	int n;
	cin>>n;
	for(int i=0; i<n-1; i++){
		int u, v;
		cin>>u>>v;
		u--; v--;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	dfs(0);
	cout<<max(dp[0][0], dp[1][0])<<endl;
	return 0;
}
0