結果

問題 No.763 Noelちゃんと木遊び
ユーザー ngtkanangtkana
提出日時 2020-04-01 22:23:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 210,160 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-06-27 11:34:13
合計ジャッジ時間 4,199 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
14,208 KB
testcase_01 AC 14 ms
5,760 KB
testcase_02 AC 33 ms
9,088 KB
testcase_03 AC 22 ms
7,296 KB
testcase_04 AC 17 ms
6,144 KB
testcase_05 AC 22 ms
7,168 KB
testcase_06 AC 41 ms
10,240 KB
testcase_07 AC 39 ms
10,112 KB
testcase_08 AC 23 ms
7,296 KB
testcase_09 AC 15 ms
6,016 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 42 ms
10,368 KB
testcase_12 AC 35 ms
9,728 KB
testcase_13 AC 35 ms
9,472 KB
testcase_14 AC 32 ms
8,832 KB
testcase_15 AC 22 ms
7,040 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 23 ms
7,168 KB
testcase_18 AC 44 ms
10,496 KB
testcase_19 AC 38 ms
9,728 KB
testcase_20 AC 38 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
using real=long double;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n;std::cin>>n;
    std::vector<std::vector<lint>>g(n);
    for(lint i=0;i<n-1;i++){
        lint u,v;std::cin>>u>>v;u--,v--;
        g.at(u).push_back(v);
        g.at(v).push_back(u);
    }
    std::vector<std::pair<lint,lint>>dp(n,std::pair{0,1});
    auto dfs=[&](auto&&f,lint x,lint p)->void{
        for(lint y:g.at(x)){
            if(y==p)continue;
            f(f,y,x);
            auto&&[a,b]=dp.at(y);
            std::get<0>(dp.at(x))+=std::max(a,b);
            std::get<1>(dp.at(x))+=a;
        }
    };
    dfs(dfs,0,0);
    std::cout<<std::max(std::get<0>(dp.at(0)),std::get<1>(dp.at(0)))<<'\n';
}
0