結果

問題 No.2677 Minmax Independent Set
ユーザー kokoseikokosei
提出日時 2024-03-16 00:03:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 1,771 bytes
コンパイル時間 3,034 ms
コンパイル使用メモリ 253,548 KB
実行使用メモリ 70,656 KB
最終ジャッジ日時 2024-09-30 03:33:28
合計ジャッジ時間 11,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 189 ms
32,640 KB
testcase_06 AC 193 ms
33,024 KB
testcase_07 AC 190 ms
33,536 KB
testcase_08 AC 194 ms
34,816 KB
testcase_09 AC 200 ms
36,992 KB
testcase_10 AC 155 ms
31,616 KB
testcase_11 AC 156 ms
31,616 KB
testcase_12 AC 220 ms
70,656 KB
testcase_13 AC 223 ms
44,156 KB
testcase_14 AC 214 ms
44,896 KB
testcase_15 AC 244 ms
52,932 KB
testcase_16 AC 229 ms
27,520 KB
testcase_17 AC 204 ms
27,648 KB
testcase_18 AC 109 ms
18,816 KB
testcase_19 AC 137 ms
21,760 KB
testcase_20 AC 34 ms
9,856 KB
testcase_21 AC 156 ms
23,552 KB
testcase_22 AC 12 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 147 ms
32,064 KB
testcase_29 AC 221 ms
54,528 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 4 ms
5,248 KB
testcase_41 AC 6 ms
5,248 KB
testcase_42 AC 9 ms
5,248 KB
testcase_43 AC 17 ms
6,816 KB
testcase_44 AC 34 ms
9,472 KB
testcase_45 AC 72 ms
15,232 KB
testcase_46 AC 192 ms
27,008 KB
testcase_47 AC 196 ms
27,264 KB
testcase_48 AC 195 ms
27,392 KB
testcase_49 AC 201 ms
27,520 KB
testcase_50 AC 45 ms
14,048 KB
testcase_51 AC 5 ms
5,248 KB
testcase_52 AC 130 ms
27,168 KB
testcase_53 AC 113 ms
25,196 KB
testcase_54 AC 5 ms
5,248 KB
testcase_55 AC 175 ms
31,416 KB
testcase_56 AC 185 ms
31,344 KB
testcase_57 AC 184 ms
31,708 KB
testcase_58 AC 188 ms
31,800 KB
testcase_59 AC 190 ms
31,360 KB
testcase_60 AC 94 ms
27,520 KB
testcase_61 AC 102 ms
28,032 KB
testcase_62 AC 104 ms
37,376 KB
testcase_63 AC 121 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int N;
vector<int> G[202020];
vector<pair<int, int>> dp[202020];
pair<int, int> ans[202020];
pair<int, int> add(pair<int, int> a, pair<int, int> b){
    a.first += b.second;
    a.second += max(b.first, b.second);
    return a;
}
pair<int, int> unit(pair<int, int> a, pair<int, int> b){
    a.first += b.first;
    a.second += b.second;
    return a;
}
pair<int, int> addroot(pair<int, int> p){
    p.first += 1;
    return p;
}
pair<int, int> dfs0(int v, int p){
    pair<int, int> res = {0, 0};
    int sz = G[v].size();
    dp[v].resize(sz);
    for(int i = 0;i < sz;i++){
        int nv = G[v][i];
        if(nv == p)continue;
        dp[v][i] = dfs0(nv, v);
        res = add(res, dp[v][i]);
    }
    return addroot(res);
}
void dfs(int v, pair<int, int> pre, int p){
    int sz = G[v].size();
    for(int i = 0;i < sz;i++){
        if(G[v][i] == p)dp[v][i] = pre;
    }
    vector<pair<int, int>> dpl(sz + 1, {0, 0}), dpr(sz + 1, {0, 0});
    for(int i = 0;i < sz;i++){
        dpl[i + 1] = add(dpl[i], dp[v][i]);
    }
    for(int i = sz - 1;i >= 0;i--){
        dpr[i] = add(dpr[i + 1], dp[v][i]);
    }
    ans[v] = addroot(dpl[sz]);
    for(int i = 0;i < sz;i++){
        int nv = G[v][i];
        if(nv == p)continue;
        dfs(nv, addroot(unit(dpl[i], dpr[i + 1])), v);
    }
}
int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cin >> 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);
    }
    dfs0(0, -1);
    dfs(0, {0, 0}, -1);
    int all = 1e9;
    for(int i = 0;i < N;i++){
        all = min(all, ans[i].first);
    }
    cout << all << endl;
    return 0;
}
0