結果

問題 No.763 Noelちゃんと木遊び
ユーザー parsee1053parsee1053
提出日時 2019-06-28 23:56:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 63,200 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-07-02 05:15:48
合計ジャッジ時間 2,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
17,536 KB
testcase_01 AC 28 ms
7,168 KB
testcase_02 AC 70 ms
8,884 KB
testcase_03 AC 49 ms
7,936 KB
testcase_04 AC 32 ms
7,296 KB
testcase_05 AC 47 ms
7,936 KB
testcase_06 AC 83 ms
9,600 KB
testcase_07 AC 83 ms
9,472 KB
testcase_08 AC 50 ms
7,936 KB
testcase_09 AC 34 ms
7,236 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 90 ms
9,536 KB
testcase_12 AC 74 ms
9,088 KB
testcase_13 AC 77 ms
9,216 KB
testcase_14 AC 71 ms
8,740 KB
testcase_15 AC 48 ms
7,912 KB
testcase_16 AC 10 ms
6,944 KB
testcase_17 AC 49 ms
7,960 KB
testcase_18 AC 96 ms
9,600 KB
testcase_19 AC 85 ms
8,960 KB
testcase_20 AC 85 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>

using namespace std;

typedef long long ll;
typedef pair<ll, ll> P;

#define MOD 1000000007
#define REP(i, N) for (int i = 0; i < N; ++i)
#define REP1(i, N) for (int i = 1; i <= N; ++i)
#define RREP(i, N) for (int i = N - 1; i >= 0; --i)
#define ALL(a) a.begin(), a.end()

int n;
vector<int> G[100000];
int dp[100000][2];

void dfs(int x, int p) {
  dp[x][0] = 1;
  dp[x][1] = 0;
  REP(i, G[x].size()) {
    if (G[x][i] == p) continue;
    dfs(G[x][i], x);
    dp[x][0] += max(dp[G[x][i]][0] - 1, dp[G[x][i]][1]);
    dp[x][1] += max(dp[G[x][i]][0], dp[G[x][i]][1]);
  }
}

int main() {
  cin >> n;
  REP(i, n - 1) {
    int u, v;
    cin >> 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;
}
0