結果

問題 No.763 Noelちゃんと木遊び
ユーザー jupirojupiro
提出日時 2020-03-13 20:24:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,716 bytes
コンパイル時間 1,346 ms
コンパイル使用メモリ 122,656 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-11-22 17:12:11
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
22,144 KB
testcase_01 AC 19 ms
7,040 KB
testcase_02 AC 47 ms
11,904 KB
testcase_03 AC 30 ms
9,088 KB
testcase_04 AC 22 ms
7,424 KB
testcase_05 AC 28 ms
8,960 KB
testcase_06 AC 57 ms
13,568 KB
testcase_07 AC 55 ms
13,312 KB
testcase_08 AC 30 ms
9,472 KB
testcase_09 AC 20 ms
7,296 KB
testcase_10 AC 9 ms
6,820 KB
testcase_11 AC 62 ms
14,080 KB
testcase_12 AC 53 ms
12,672 KB
testcase_13 AC 51 ms
12,544 KB
testcase_14 AC 44 ms
11,520 KB
testcase_15 AC 28 ms
9,216 KB
testcase_16 AC 6 ms
6,816 KB
testcase_17 AC 29 ms
9,216 KB
testcase_18 AC 61 ms
13,764 KB
testcase_19 AC 53 ms
12,800 KB
testcase_20 AC 51 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1 << 28;
//constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

int n;
vector<vector<int>> g;
vector<vector<int>> dp;

void dfs(int cur, int pre) {
	for (int next : g[cur]) {
		if (next == pre) continue;
		dfs(next, cur);
	}
	int res1 = 1;
	int res2 = 0;
	for (int next : g[cur]) {
		if (next == pre) continue;
		res2 += max(dp[next][0], dp[next][1]);
		res1 += max(dp[next][0] - 1, dp[next][1]);
	}
	dp[cur][0] = res1;
	dp[cur][1] = res2;
}
int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
	scanf("%d", &n);
	g.resize(n);
	dp = vector<vector<int>>(n, vector<int>(2));
	for (int i = 0; i < n - 1; i++) {
		int u, v; scanf("%d %d", &u, &v);
		u--; v--;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	dfs(0, -1);
	cout << max(dp[0][0], dp[0][1]) << endl;
	return 0;
	/*
		おまじないを使ったらscanfとprintf関連注意!!!!!!!!!!!!
	*/
}
0