結果

問題 No.2677 Minmax Independent Set
ユーザー maeshunmaeshun
提出日時 2024-03-16 12:15:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 3,162 bytes
コンパイル時間 4,829 ms
コンパイル使用メモリ 271,312 KB
実行使用メモリ 80,620 KB
最終ジャッジ日時 2024-09-30 03:55:17
合計ジャッジ時間 13,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
19,592 KB
testcase_01 AC 18 ms
19,612 KB
testcase_02 AC 18 ms
19,712 KB
testcase_03 AC 19 ms
19,624 KB
testcase_04 AC 18 ms
19,572 KB
testcase_05 AC 199 ms
39,664 KB
testcase_06 AC 204 ms
40,304 KB
testcase_07 AC 203 ms
40,940 KB
testcase_08 AC 203 ms
42,092 KB
testcase_09 AC 203 ms
44,396 KB
testcase_10 AC 182 ms
37,992 KB
testcase_11 AC 177 ms
37,868 KB
testcase_12 AC 248 ms
80,620 KB
testcase_13 AC 225 ms
51,948 KB
testcase_14 AC 220 ms
52,592 KB
testcase_15 AC 239 ms
61,416 KB
testcase_16 AC 207 ms
35,052 KB
testcase_17 AC 210 ms
35,052 KB
testcase_18 AC 131 ms
29,420 KB
testcase_19 AC 159 ms
31,136 KB
testcase_20 AC 64 ms
23,696 KB
testcase_21 AC 199 ms
32,368 KB
testcase_22 AC 34 ms
20,852 KB
testcase_23 AC 19 ms
19,648 KB
testcase_24 AC 18 ms
19,692 KB
testcase_25 AC 19 ms
19,732 KB
testcase_26 AC 19 ms
19,732 KB
testcase_27 AC 18 ms
19,648 KB
testcase_28 AC 156 ms
38,504 KB
testcase_29 AC 240 ms
63,336 KB
testcase_30 AC 19 ms
19,648 KB
testcase_31 AC 18 ms
19,568 KB
testcase_32 AC 16 ms
19,768 KB
testcase_33 AC 18 ms
19,588 KB
testcase_34 AC 20 ms
19,700 KB
testcase_35 AC 18 ms
19,708 KB
testcase_36 AC 18 ms
19,724 KB
testcase_37 AC 19 ms
19,696 KB
testcase_38 AC 18 ms
19,800 KB
testcase_39 AC 17 ms
19,752 KB
testcase_40 AC 19 ms
20,004 KB
testcase_41 AC 21 ms
20,104 KB
testcase_42 AC 25 ms
20,656 KB
testcase_43 AC 35 ms
21,552 KB
testcase_44 AC 57 ms
23,664 KB
testcase_45 AC 99 ms
27,376 KB
testcase_46 AC 212 ms
34,800 KB
testcase_47 AC 212 ms
35,052 KB
testcase_48 AC 222 ms
35,052 KB
testcase_49 AC 216 ms
35,052 KB
testcase_50 AC 79 ms
26,864 KB
testcase_51 AC 23 ms
20,196 KB
testcase_52 AC 145 ms
35,124 KB
testcase_53 AC 142 ms
34,360 KB
testcase_54 AC 23 ms
20,036 KB
testcase_55 AC 197 ms
37,868 KB
testcase_56 AC 191 ms
37,868 KB
testcase_57 AC 187 ms
38,252 KB
testcase_58 AC 193 ms
37,996 KB
testcase_59 AC 187 ms
37,868 KB
testcase_60 AC 172 ms
35,180 KB
testcase_61 AC 173 ms
35,692 KB
testcase_62 AC 176 ms
45,040 KB
testcase_63 AC 185 ms
59,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint;
using P = pair<ll,ll>;
using lb = long double;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int n;
vector<vector<int>> dp(2e5+5, vector<int>(2));
vector<int> ans(2e5+5);
vector<vector<int>> g(2e5+5);
int m;

struct Edge { 
    int to, cost;
    Edge(int to, int cost) : to(to), cost(cost) {}
};

template <class S, S (*op)(S, S), S (*e)(S)> struct ReRooting {
  public:
    ReRooting() : ReRooting(0) {}
    ReRooting(int n) : ReRooting(std::vector<S>(n)) {}
    ReRooting(const std::vector<S>& v) : _n(int(v.size())) {
        dp = std::vector<S>(_n);
        g = std::vector<vector<Edge>>(_n);
        ans = std::vector<S>(_n);
    }

    void addEdge(int a, int b, int w = 1) {
        assert(0 <= a && a < _n);
        assert(0 <= b && b < _n);
        g[a].push_back(Edge(b, w));
        g[b].push_back(Edge(a, w));
    }

    void init(){
        dfs1(0);
        rep(i,_n){
            dbg(dp[i].black,dp[i].white);
        }
        dfs2(0);
    }

    std::vector<S> ans;


  private:
    int _n, size, log;
    std::vector<S> dp;
    std::vector<vector<Edge>> g;

    S dfs1(int u, int p=-1){
        for(auto [v, cost] : g[u]) {
            if(v==p) continue;
            dp[u] = op(dp[u], dfs1(v,u));
        }
        dbg(u,dp[u].white, dp[u].black);
        return dp[u] = addRoot(dp[u]);
    }

    void dfs2(int u, int p = -1){
        int N = g[u].size();
        if(N==0) return;
        vector<S> l(N);
        vector<S> r(N);
        rep(i,N){
            ans[u] = op(ans[u], dp[g[u][i].to]);
        }
        ans[u] = addRoot(ans[u]);
        l[0] = dp[g[u][0].to];
        r[N-1] = dp[g[u][N-1].to];
        rep(i,N){
            int v = g[u][i].to;
            if(i-1>=0) {
                l[i] = op(l[i-1],dp[v]);
            }
        }
        for(int i=N-1;i>=0;i--){
            int v = g[u][i].to;
            if(i+1<N) {
                r[i] = op(r[i+1], dp[v]);
            }
        }
        rep(i,N){
            int v = g[u][i].to;
            if(v==p) continue;
            dp[u] = {0,0};
            if(i-1>=0) {
                dp[u] = op(dp[u], l[i-1]);
            }
            if(i+1<N) {
                dp[u] = op(dp[u], r[i+1]);
            }
            dp[u] = addRoot(dp[u]);
            dfs2(v, u);
        }
    }
};

struct S{
    int white, black;
};

S op(S a, S b) {
    return S{a.white+b.white, max(a.black,a.white)+max(b.black,b.white)};
}

S addRoot(S a) {
    return S{max(a.black,a.white),a.white+1};
}

int main()
{
    cin >> n;
    if(n==1){
        cout<<1<<endl;
        return 0;
    }
    ReRooting<S, op, addRoot> rt(n);
    rep(i,n-1){
        int u, v;
        cin >> u >> v;
        --u;--v;
        rt.addEdge(u,v);
    }
    rt.init();
    int f = 1e9;
    rep(i,n){
        f = min(f, rt.ans[i].black);
    }
    cout<<f<<endl;
    return 0;
}
0