結果

問題 No.763 Noelちゃんと木遊び
ユーザー pionepione
提出日時 2020-07-11 18:25:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 2,105 bytes
コンパイル時間 1,849 ms
コンパイル使用メモリ 165,984 KB
実行使用メモリ 16,580 KB
最終ジャッジ日時 2024-04-21 09:25:18
合計ジャッジ時間 3,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
16,580 KB
testcase_01 AC 16 ms
7,428 KB
testcase_02 AC 39 ms
10,180 KB
testcase_03 AC 26 ms
8,448 KB
testcase_04 AC 18 ms
7,772 KB
testcase_05 AC 25 ms
9,156 KB
testcase_06 AC 50 ms
10,696 KB
testcase_07 AC 46 ms
10,944 KB
testcase_08 AC 27 ms
9,284 KB
testcase_09 AC 18 ms
7,764 KB
testcase_10 AC 9 ms
6,948 KB
testcase_11 AC 47 ms
10,764 KB
testcase_12 AC 42 ms
10,180 KB
testcase_13 AC 41 ms
10,440 KB
testcase_14 AC 36 ms
10,048 KB
testcase_15 AC 24 ms
9,160 KB
testcase_16 AC 7 ms
6,944 KB
testcase_17 AC 25 ms
9,024 KB
testcase_18 AC 47 ms
10,948 KB
testcase_19 AC 42 ms
10,308 KB
testcase_20 AC 42 ms
10,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// #define int long long
#define rep(i, n) for (long long i = (long long)(0); i < (long long)(n); ++i)
#define reps(i, n) for (long long i = (long long)(1); i <= (long long)(n); ++i)
#define rrep(i, n) for (long long i = ((long long)(n)-1); i >= 0; i--)
#define rreps(i, n) for (long long i = ((long long)(n)); i > 0; i--)
#define irep(i, m, n) for (long long i = (long long)(m); i < (long long)(n); ++i)
#define ireps(i, m, n) for (long long i = (long long)(m); i <= (long long)(n); ++i)
#define SORT(v, n) sort(v, v + n);
#define REVERSE(v, n) reverse(v, v+n);
#define vsort(v) sort(v.begin(), v.end());
#define all(v) v.begin(), v.end()
#define mp(n, m) make_pair(n, m);
#define cout(d) cout<<d<<endl;
#define coutd(d) cout<<std::setprecision(10)<<d<<endl;
#define cinline(n) getline(cin,n);
#define replace_all(s, b, a) replace(s.begin(),s.end(), b, a);
#define PI (acos(-1))
#define FILL(v, n, x) fill(v, v + n, x);
#define sz(x) long long(x.size())

using ll = long long;
using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using vs = vector<string>;
using vpll = vector<pair<ll, ll>>;
using vtp = vector<tuple<ll,ll,ll>>;
using vb = vector<bool>;

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; }

const ll INF = 1e9+10;
const ll MOD = 1e9+7;
const ll LINF = 1e18;

vll G[100100];
ll dp[100100][2];


void dfs(ll v, ll p){
  ll child=0;
  for(auto &nv: G[v]){
    if(nv==p) continue;
    dfs(nv,v);
    dp[v][0]+=max(dp[nv][0],dp[nv][1]);
    dp[v][1]+=max(dp[nv][0]+1,dp[nv][1]);
  }
  // cout<<v<<' '<<dp[v][0]<<' '<<dp[v][1]<<endl;
}

signed main()
{
  cin.tie( 0 ); ios::sync_with_stdio( false );
  
  ll n; cin>>n;
  rep(i,n-1){
    ll a,b; cin>>a>>b; a--,b--;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  
  // rep(i,n) rep(j,2) dp[i][j]=1;
  
  dfs(0,-1);
  cout<<max(dp[0][0]+1,dp[0][1])<<endl;
  
}
0