結果

問題 No.763 Noelちゃんと木遊び
ユーザー Div9851KDiv9851K
提出日時 2019-07-17 10:36:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 1,574 ms
コンパイル使用メモリ 160,772 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-05-10 00:48:58
合計ジャッジ時間 4,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
19,840 KB
testcase_01 AC 30 ms
8,320 KB
testcase_02 AC 69 ms
9,728 KB
testcase_03 AC 47 ms
9,088 KB
testcase_04 AC 34 ms
8,576 KB
testcase_05 AC 47 ms
9,088 KB
testcase_06 AC 92 ms
10,240 KB
testcase_07 AC 85 ms
10,240 KB
testcase_08 AC 50 ms
9,088 KB
testcase_09 AC 34 ms
8,576 KB
testcase_10 AC 15 ms
7,808 KB
testcase_11 AC 89 ms
10,496 KB
testcase_12 AC 82 ms
10,112 KB
testcase_13 AC 76 ms
9,984 KB
testcase_14 AC 69 ms
9,728 KB
testcase_15 AC 47 ms
8,960 KB
testcase_16 AC 12 ms
7,680 KB
testcase_17 AC 46 ms
8,960 KB
testcase_18 AC 85 ms
10,368 KB
testcase_19 AC 76 ms
9,984 KB
testcase_20 AC 79 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;
typedef long long ll;
const ll MOD = 1e9 + 7;
vector<int> G[100000];
ll memo[100000][2];
ll solve(int v, int f, int p) {
	if (memo[v][f] != -1) return memo[v][f];
	ll ret = 0;
	if (f == 0) {
		ret++;
		for (int to : G[v]) {
			if (to == p) continue;
			ret += max(solve(to, 0, v) - 1, solve(to, 1, v));
		}
	}
	else {
		for (int to : G[v]) {
			if (to == p) continue;
			ret += max(solve(to, 0, v), solve(to, 1, v));
		}
	}
	return memo[v][f] = ret;
}
 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);
	 }
	 memset(memo, -1, sizeof(memo));
	 ll ans = max(solve(0, 0, -1), solve(0, 1, -1));
	 cout << ans << endl;
}
0