結果

問題 No.2677 Minmax Independent Set
ユーザー 👑 nu50218nu50218
提出日時 2024-02-13 21:06:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 909 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 213,320 KB
実行使用メモリ 68,840 KB
最終ジャッジ日時 2024-03-15 20:51:22
合計ジャッジ時間 10,005 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
14,560 KB
testcase_01 AC 6 ms
14,560 KB
testcase_02 AC 7 ms
14,560 KB
testcase_03 AC 6 ms
14,560 KB
testcase_04 AC 7 ms
14,560 KB
testcase_05 AC 687 ms
67,432 KB
testcase_06 AC 689 ms
67,560 KB
testcase_07 AC 695 ms
67,816 KB
testcase_08 AC 679 ms
68,200 KB
testcase_09 AC 691 ms
68,840 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// メモ化再帰
#include <bits/stdc++.h>
using namespace std;

vector<vector<int>> adj;
unordered_map<int, pair<int, int>> memo[200100];

// 木DPを行う
pair<int, int> rec(int r, int par = -1) {
    if (memo[r][par] != pair<int, int>{0, 0}) return memo[r][par];

    int ret0 = 0;
    int ret1 = 1;

    for (auto &&c : adj[r]) {
        if (c == par) continue;
        auto [dp0, dp1] = rec(c, r);
        ret0 += max(dp0, dp1);
        ret1 += dp0;
    }

    return memo[r][par] = {ret0, ret1};
}

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

    adj.resize(N);

    for (int i = 0; i < N - 1; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        adj[u].push_back(v);
        adj[v].push_back(u);
    }

    int ans = numeric_limits<int>::max();

    for (int r = 0; r < N; r++) {
        auto [dp0, dp1] = rec(r);
        ans = min(ans, dp1);
    }

    cout << ans << endl;
}
0