結果

問題 No.1582 Vertexes vs Edges
ユーザー momoyuumomoyuu
提出日時 2024-08-07 22:41:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 1,211 ms
コンパイル使用メモリ 100,684 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-08-07 22:42:03
合計ジャッジ時間 4,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 30 ms
8,832 KB
testcase_06 AC 4 ms
6,948 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 15 ms
6,940 KB
testcase_09 AC 27 ms
8,448 KB
testcase_10 AC 19 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 12 ms
6,944 KB
testcase_13 AC 20 ms
6,940 KB
testcase_14 AC 21 ms
6,940 KB
testcase_15 AC 29 ms
8,192 KB
testcase_16 AC 15 ms
6,940 KB
testcase_17 AC 20 ms
6,940 KB
testcase_18 AC 34 ms
9,216 KB
testcase_19 AC 20 ms
7,040 KB
testcase_20 AC 19 ms
6,940 KB
testcase_21 AC 16 ms
6,940 KB
testcase_22 AC 29 ms
8,576 KB
testcase_23 AC 12 ms
6,940 KB
testcase_24 AC 6 ms
6,940 KB
testcase_25 AC 18 ms
6,940 KB
testcase_26 AC 13 ms
6,940 KB
testcase_27 AC 29 ms
7,936 KB
testcase_28 AC 9 ms
6,944 KB
testcase_29 AC 25 ms
7,296 KB
testcase_30 AC 16 ms
6,944 KB
testcase_31 AC 25 ms
7,424 KB
testcase_32 AC 11 ms
6,940 KB
testcase_33 AC 39 ms
9,600 KB
testcase_34 AC 55 ms
9,600 KB
testcase_35 AC 67 ms
9,600 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using ll = long long;


int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin>>n;
    vector<vector<int>> g(n);
    for(int i = 0;i<n-1;i++){
        int u,v;
        cin>>u>>v;
        u--;v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    vector<int> dp1(n,0),dp2(n,0);
    auto calc = [&](auto calc,int ni,int p) -> void {
        for(auto&to:g[ni]) if(to!=p) {
            calc(calc,to,ni);
            dp1[ni] += dp2[to];
            dp2[ni] += min(dp1[to],dp2[to]);
        }
        dp2[ni]++;
    };
    calc(calc,0,-1);
    int ans = min(dp1[0],dp2[0]);
    cout<<ans<<endl;
}   

0