結果

問題 No.763 Noelちゃんと木遊び
ユーザー bonKotsubonKotsu
提出日時 2022-07-16 11:35:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 202,512 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-06-28 10:38:49
合計ジャッジ時間 4,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
17,536 KB
testcase_01 AC 30 ms
7,168 KB
testcase_02 AC 69 ms
8,896 KB
testcase_03 AC 47 ms
7,808 KB
testcase_04 AC 33 ms
7,296 KB
testcase_05 AC 44 ms
7,808 KB
testcase_06 AC 84 ms
9,600 KB
testcase_07 AC 82 ms
9,384 KB
testcase_08 AC 49 ms
8,064 KB
testcase_09 AC 31 ms
7,296 KB
testcase_10 AC 14 ms
6,400 KB
testcase_11 AC 89 ms
9,600 KB
testcase_12 AC 75 ms
9,284 KB
testcase_13 AC 75 ms
9,288 KB
testcase_14 AC 66 ms
8,832 KB
testcase_15 AC 44 ms
7,876 KB
testcase_16 AC 10 ms
6,144 KB
testcase_17 AC 45 ms
7,836 KB
testcase_18 AC 82 ms
9,600 KB
testcase_19 AC 79 ms
9,216 KB
testcase_20 AC 74 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define all(s) s.begin(), s.end()
#define rall(s) s.rbegin(), s.rend()
template<class T>
void chmax(T& a, T b) { a = max(a, b); };
template<class T>
void chmin(T& a, T b) { a = min(a, b); };
int n;
vector<int> g[100005];
int dp[100005][2];

void dfs(int v, int p = -1) {
  dp[v][1] = 1;
  int tmp0 = 0, tmp1 = 0;
  for (int nv : g[v]) {
    if (nv == p) continue;
    dfs(nv,v);
    tmp0 += max(dp[nv][0],dp[nv][1]);
    tmp1 += max(dp[nv][0], dp[nv][1]-1);
  }
  dp[v][0] += tmp0;
  dp[v][1] += tmp1;
}

int main() {
  cin >> n;
  rep(i,n-1) {
    int u, v;
    cin >> u >> v;
    u--, v--;
    g[u].pb(v);
    g[v].pb(u);
  }

  dfs(0);
  cout << max(dp[0][0], dp[0][1]) << endl;
  return 0;
}
0