結果

問題 No.763 Noelちゃんと木遊び
ユーザー utouto97utouto97
提出日時 2019-02-27 11:37:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 1,316 bytes
コンパイル時間 1,316 ms
コンパイル使用メモリ 161,852 KB
実行使用メモリ 18,376 KB
最終ジャッジ日時 2024-06-23 05:03:10
合計ジャッジ時間 3,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
18,376 KB
testcase_01 AC 26 ms
7,624 KB
testcase_02 AC 64 ms
9,552 KB
testcase_03 AC 43 ms
8,192 KB
testcase_04 AC 33 ms
8,260 KB
testcase_05 AC 41 ms
8,640 KB
testcase_06 AC 73 ms
10,308 KB
testcase_07 AC 72 ms
10,308 KB
testcase_08 AC 44 ms
9,024 KB
testcase_09 AC 30 ms
7,424 KB
testcase_10 AC 13 ms
6,948 KB
testcase_11 AC 78 ms
10,308 KB
testcase_12 AC 70 ms
9,884 KB
testcase_13 AC 74 ms
9,728 KB
testcase_14 AC 67 ms
9,796 KB
testcase_15 AC 44 ms
8,900 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 41 ms
8,392 KB
testcase_18 AC 76 ms
10,432 KB
testcase_19 AC 75 ms
9,984 KB
testcase_20 AC 70 ms
10,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;

#ifdef LOCAL
#define eprintf(...) fprintf(stderr, __VA_ARGS__)
#else
#define eprintf(...) 42
#endif

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define repi(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define all(x) (x).begin(),(x).end()
#define foreach(u,v) for(auto (u) : (v))
#define pb push_back
#define mp make_pair
#define mt make_tuple

typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<ll, ll> pll;
typedef vector<ll> vl;

const int inf = 1e9;
const ll linf = 1LL<<60;
const ll mod = 1e9 + 7;
const double eps = 1e-9;

/*{
  dp[i][j]
    iを根とする部分木で
    j=0 iを削除しない
    j=1 iを削除する
    ときの連結成分の個数
}*/

vector<int> g[100000];
ll dp[100001][2];

void dfs(int x, int par = -1)
{
  dp[x][0] = 1;
  dp[x][1] = 0;

  for(auto to : g[x]){
    if(to == par) continue;

    dfs(to, x);
    dp[x][0] += dp[to][1];
    dp[x][1] += max(dp[to][0], dp[to][1]);
  }

//  cout << x << " : " << dp[x][0] << " , " << dp[x][1] << endl;
}

int main()
{
  int n;
  cin >> n;

  rep(i, n-1){
    int x, y;
    cin >> x >> y;
    x--; y--;

    g[x].pb(y);
    g[y].pb(x);
  }

  dfs(0);

  ll ans = max(dp[0][0], dp[0][1]);

  cout << ans << endl;

  return 0;
}
0