結果

問題 No.763 Noelちゃんと木遊び
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2019-08-27 15:29:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 1,669 ms
コンパイル使用メモリ 176,468 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-04-27 16:17:12
合計ジャッジ時間 4,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
22,144 KB
testcase_01 AC 28 ms
7,040 KB
testcase_02 AC 72 ms
11,776 KB
testcase_03 AC 44 ms
9,216 KB
testcase_04 AC 38 ms
7,424 KB
testcase_05 AC 44 ms
8,832 KB
testcase_06 AC 82 ms
13,568 KB
testcase_07 AC 80 ms
13,312 KB
testcase_08 AC 48 ms
9,344 KB
testcase_09 AC 29 ms
7,424 KB
testcase_10 AC 12 ms
5,376 KB
testcase_11 AC 86 ms
13,868 KB
testcase_12 AC 77 ms
12,544 KB
testcase_13 AC 72 ms
12,416 KB
testcase_14 AC 64 ms
11,520 KB
testcase_15 AC 42 ms
8,960 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 43 ms
8,960 KB
testcase_18 AC 84 ms
13,800 KB
testcase_19 AC 78 ms
12,800 KB
testcase_20 AC 79 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define ALL(obj) (obj).begin(),(obj).end()
#define RALL(obj) (obj).rbegin(),(obj).rend()
#define REP(i, n) for(int i = 0; i < (int)(n); i++)
#define REPR(i, n) for(int i = (int)(n); i >= 0; i--)
#define FOR(i,n,m) for(int i = (int)(n); i < int(m); i++)
using namespace std;
typedef long long ll;
const int MOD = 1e9 + 7;
const int INF = MOD - 1;
const ll LLINF = 4e18;

vector<vector<int>> dp,tree;

int sol(int v, int f ,int p = -1) {
    if (dp[v][f] != -1) return dp[v][f];
    dp[v][f] = f;
    for (int u : tree[v]) {
        if (u == p) continue;
        dp[v][f] += max(sol(u, 0, v), sol(u, 1, v) - f);
    }
    return dp[v][f];
}

int main() {
    int n; cin >> n;
    tree.resize(n);
    dp.resize(n, vector<int>(2,-1));
    REP(i, n - 1) {
        int u, v; cin >> u >> v;
        u--; v--;
        tree[u].push_back(v);
        tree[v].push_back(u);
    }
    cout << max(sol(0, 0), sol(0, 1)) << endl;
    getchar(); getchar();
}
0