結果

問題 No.2677 Minmax Independent Set
ユーザー NokonoKotlinNokonoKotlin
提出日時 2024-03-13 21:03:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,435 bytes
コンパイル時間 3,125 ms
コンパイル使用メモリ 253,948 KB
実行使用メモリ 46,164 KB
最終ジャッジ日時 2024-09-30 00:15:44
合計ジャッジ時間 12,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 220 ms
26,764 KB
testcase_06 AC 218 ms
26,988 KB
testcase_07 AC 221 ms
27,184 KB
testcase_08 AC 222 ms
27,756 KB
testcase_09 AC 228 ms
28,496 KB
testcase_10 AC 159 ms
24,112 KB
testcase_11 AC 159 ms
24,116 KB
testcase_12 AC 249 ms
46,164 KB
testcase_13 AC 237 ms
31,388 KB
testcase_14 AC 223 ms
31,632 KB
testcase_15 AC 244 ms
35,924 KB
testcase_16 AC 249 ms
24,692 KB
testcase_17 AC 241 ms
24,700 KB
testcase_18 AC 137 ms
16,892 KB
testcase_19 AC 181 ms
19,388 KB
testcase_20 AC 50 ms
8,960 KB
testcase_21 AC 195 ms
21,080 KB
testcase_22 AC 15 ms
6,816 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 148 ms
22,896 KB
testcase_29 AC 238 ms
39,316 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 AC 4 ms
6,820 KB
testcase_41 AC 6 ms
6,820 KB
testcase_42 AC 13 ms
6,816 KB
testcase_43 AC 24 ms
6,820 KB
testcase_44 AC 50 ms
8,704 KB
testcase_45 AC 104 ms
14,140 KB
testcase_46 AC 247 ms
24,964 KB
testcase_47 AC 254 ms
25,332 KB
testcase_48 AC 246 ms
25,280 KB
testcase_49 AC 248 ms
25,364 KB
testcase_50 AC 65 ms
11,184 KB
testcase_51 AC 6 ms
6,820 KB
testcase_52 AC 142 ms
19,576 KB
testcase_53 AC 135 ms
18,256 KB
testcase_54 AC 5 ms
6,816 KB
testcase_55 AC 185 ms
23,452 KB
testcase_56 AC 180 ms
23,096 KB
testcase_57 AC 188 ms
23,712 KB
testcase_58 AC 189 ms
23,452 KB
testcase_59 AC 180 ms
23,116 KB
testcase_60 AC 161 ms
25,696 KB
testcase_61 AC 162 ms
24,048 KB
testcase_62 AC 164 ms
28,628 KB
testcase_63 AC 167 ms
34,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int N;
vector<vector<int>> adj;

vector<int> order;
vector<vector<int>> children;

void dfs(int x, int p = -1) {
    order.push_back(x);
    for (auto &&c : adj[x]) {
        if (c == p) continue;
        dfs(c, x);
        children[x].push_back(c);
    }
}

int main() {
    cin >> N;
    adj.resize(N);
    children.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);
    }

    dfs(0);

    vector<pair<int, int>> dp(N, {0, 1});

    reverse(order.begin(), order.end());
    for (auto &&i : order) {
        for (auto &&j : children[i]) {
            dp[i] = {
                dp[i].first + max(dp[j].first, dp[j].second),
                dp[i].second + dp[j].first,
            };
        }
    }

    reverse(order.begin(), order.end());
    for (auto &&i : order) {
        for (auto &&j : children[i]) {
            pair<int, int> dp_par = {
                dp[i].first - max(dp[j].first, dp[j].second),
                dp[i].second - dp[j].first,
            };
            dp[j] = {
                dp[j].first + max(dp_par.first, dp_par.second),
                dp[j].second + dp_par.first,
            };
        }
    }

    int ans = numeric_limits<int>::max();
    for (auto &&[x, y] : dp) {
        ans = min(ans, y);
    }
    cout << ans << endl;
}
0