結果

問題 No.2677 Minmax Independent Set
ユーザー dyktr_06dyktr_06
提出日時 2024-03-16 00:50:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 863 ms / 2,000 ms
コード長 7,459 bytes
コンパイル時間 5,815 ms
コンパイル使用メモリ 284,692 KB
実行使用メモリ 199,996 KB
最終ジャッジ日時 2024-03-16 00:51:01
合計ジャッジ時間 27,454 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 2 ms
6,548 KB
testcase_04 AC 2 ms
6,548 KB
testcase_05 AC 613 ms
78,376 KB
testcase_06 AC 646 ms
79,508 KB
testcase_07 AC 612 ms
81,896 KB
testcase_08 AC 610 ms
82,712 KB
testcase_09 AC 594 ms
87,172 KB
testcase_10 AC 557 ms
77,560 KB
testcase_11 AC 551 ms
77,560 KB
testcase_12 AC 617 ms
199,996 KB
testcase_13 AC 807 ms
114,464 KB
testcase_14 AC 711 ms
111,840 KB
testcase_15 AC 863 ms
139,488 KB
testcase_16 AC 582 ms
69,404 KB
testcase_17 AC 587 ms
69,404 KB
testcase_18 AC 345 ms
45,496 KB
testcase_19 AC 420 ms
53,192 KB
testcase_20 AC 131 ms
20,992 KB
testcase_21 AC 500 ms
58,560 KB
testcase_22 AC 30 ms
8,320 KB
testcase_23 AC 3 ms
6,548 KB
testcase_24 AC 2 ms
6,548 KB
testcase_25 AC 2 ms
6,548 KB
testcase_26 AC 2 ms
6,548 KB
testcase_27 AC 3 ms
6,548 KB
testcase_28 AC 507 ms
78,780 KB
testcase_29 AC 808 ms
144,368 KB
testcase_30 AC 2 ms
6,548 KB
testcase_31 AC 2 ms
6,548 KB
testcase_32 AC 2 ms
6,548 KB
testcase_33 AC 2 ms
6,548 KB
testcase_34 AC 2 ms
6,548 KB
testcase_35 AC 2 ms
6,548 KB
testcase_36 AC 2 ms
6,548 KB
testcase_37 AC 3 ms
6,548 KB
testcase_38 AC 3 ms
6,548 KB
testcase_39 AC 5 ms
6,548 KB
testcase_40 AC 7 ms
6,548 KB
testcase_41 AC 12 ms
6,548 KB
testcase_42 AC 25 ms
7,552 KB
testcase_43 AC 59 ms
11,648 KB
testcase_44 AC 124 ms
19,840 KB
testcase_45 AC 275 ms
36,164 KB
testcase_46 AC 587 ms
68,652 KB
testcase_47 AC 597 ms
69,512 KB
testcase_48 AC 592 ms
69,512 KB
testcase_49 AC 606 ms
69,824 KB
testcase_50 AC 170 ms
32,496 KB
testcase_51 AC 11 ms
6,548 KB
testcase_52 AC 416 ms
66,568 KB
testcase_53 AC 388 ms
61,640 KB
testcase_54 AC 10 ms
6,548 KB
testcase_55 AC 530 ms
66,912 KB
testcase_56 AC 521 ms
66,760 KB
testcase_57 AC 550 ms
66,856 KB
testcase_58 AC 517 ms
67,448 KB
testcase_59 AC 550 ms
66,812 KB
testcase_60 AC 303 ms
68,420 KB
testcase_61 AC 331 ms
69,944 KB
testcase_62 AC 404 ms
93,868 KB
testcase_63 AC 463 ms
138,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;

#define overload4(_1, _2, _3, _4, name, ...) name
#define rep1(n) for(int i = 0; i < (int)(n); ++i)
#define rep2(i, n) for(int i = 0; i < (int)(n); ++i)
#define rep3(i, a, b) for(int i = (a); i < (int)(b); ++i)
#define rep4(i, a, b, c) for(int i = (a); i < (int)(b); i += (c))
#define rep(...) overload4(__VA_ARGS__, rep4, rep3, rep2, rep1)(__VA_ARGS__)

#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; --i)
#define ALL(a) (a).begin(), (a).end()
#define Sort(a) (sort((a).begin(), (a).end()))
#define RSort(a) (sort((a).rbegin(), (a).rend()))
#define UNIQUE(a) (a.erase(unique((a).begin(), (a).end()), (a).end()))

typedef long long int ll;
typedef unsigned long long ul;
typedef long double ld;
typedef vector<int> vi;
typedef vector<long long> vll;
typedef vector<char> vc;
typedef vector<string> vst;
typedef vector<double> vd;
typedef vector<long double> vld;
typedef pair<long long, long long> P;

template<class T> long long sum(const T& a){ return accumulate(a.begin(), a.end(), 0LL); }
template<class T> auto min(const T& a){ return *min_element(a.begin(), a.end()); }
template<class T> auto max(const T& a){ return *max_element(a.begin(), a.end()); }

const long long MINF = 0x7fffffffffff;
const long long INF = 0x1fffffffffffffff;
const long long MOD = 998244353;
const long double EPS = 1e-9;
const long double PI = acos(-1);
 
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

template<typename T1, typename T2> istream &operator>>(istream &is, pair<T1, T2> &p){ is >> p.first >> p.second; return is; }
template<typename T1, typename T2> ostream &operator<<(ostream &os, const pair<T1, T2> &p){ os << "(" << p.first << ", " << p.second << ")"; return os; }
template<typename T> istream &operator>>(istream &is, vector<T> &v){ for(T &in : v) is >> in; return is; }
template<typename T> ostream &operator<<(ostream &os, const vector<T> &v){ for(int i = 0; i < (int) v.size(); ++i){ os << v[i] << (i + 1 != (int) v.size() ? " " : ""); } return os; }
template <typename T, typename S> ostream &operator<<(ostream &os, const map<T, S> &mp){ for(auto &[key, val] : mp){ os << key << ":" << val << " "; } return os; }
template <typename T> ostream &operator<<(ostream &os, const set<T> &st){ auto itr = st.begin(); for(int i = 0; i < (int)st.size(); ++i){ os << *itr << (i + 1 != (int)st.size() ? " " : ""); itr++; } return os; }
template <typename T> ostream &operator<<(ostream &os, const multiset<T> &st){ auto itr = st.begin(); for(int i = 0; i < (int)st.size(); ++i){ os << *itr << (i + 1 != (int)st.size() ? " " : ""); itr++; } return os; }
template <typename T> ostream &operator<<(ostream &os, queue<T> q){ while(q.size()){ os << q.front() << " "; q.pop(); } return os; }
template <typename T> ostream &operator<<(ostream &os, deque<T> q){ while(q.size()){ os << q.front() << " "; q.pop_front(); } return os; }
template <typename T> ostream &operator<<(ostream &os, stack<T> st){ while(st.size()){ os << st.top() << " "; st.pop(); } return os; }
template <class T, class Container, class Compare> ostream &operator<<(ostream &os, priority_queue<T, Container, Compare> pq){ while(pq.size()){ os << pq.top() << " "; pq.pop(); } return os; }

template<class T, class U> inline T vin(T& vec, U n) { vec.resize(n); for(int i = 0; i < (int) n; ++i) cin >> vec[i]; return vec; }
template<class T> inline void vout(T vec, string s = "\n"){ for(auto x : vec) cout << x << s; }
template<class... T> void in(T&... a){ (cin >> ... >> a); }
void out(){ cout << '\n'; }
template<class T, class... Ts> void out(const T& a, const Ts&... b){ cout << a; (cout << ... << (cout << ' ', b)); cout << '\n'; }
template<class T, class U> void inGraph(vector<vector<T>>& G, U n, U m, bool directed = false){ G.resize(n); for(int i = 0; i < m; ++i){ int a, b; cin >> a >> b; a--, b--; G[a].push_back(b); if(!directed) G[b].push_back(a); } }

template<typename E, typename V>
struct Rerooting{
    struct edge{
        int from, to, idx, rev_idx;
    };
    int n, root;
    vector<vector<edge>> edges;
    vector<int> visited;
    vector<vector<E>> out;
    vector<E> reverse_edge;
    vector<V> ans;
    function<E(E, E)> merge;
    E e;
    function<E(V, int)> put_edge;
    function<V(E, int)> put_vertex;
    Rerooting(int _n, const function<E(E, E)> &_merge, const E &_e, const function<E(V, int)> &_put_edge, const function<V(E, int)> &_put_vertex) : n(_n), merge(_merge), e(_e), put_edge(_put_edge), put_vertex(_put_vertex){
        edges.resize(n);
    }

private:
    V dfs(int v){
        visited[v]++;
        E val = e;
        for(auto &p : edges[v]){
            if(visited[p.to] > 0 && p.to != edges[v].back().to){
                swap(p, edges[v].back());
            }
            if(visited[p.to] > 0) continue;
            E nval = put_edge(dfs(p.to), p.idx);
            out[v].emplace_back(nval);
            val = merge(val, nval);
        }
        return put_vertex(val, v);
    }

    void bfs(int v){
        int siz = out[v].size();
        vector<E> left(siz + 1), right(siz + 1);
        left[0] = e, right[siz] = e;
        for(int i = 0; i < siz; i++){
            left[i + 1] = merge(left[i], out[v][i]);
        }
        for(int i = siz - 1; i >= 0; i--){
            right[i] = merge(out[v][i], right[i + 1]);
        }
        for(int i = 0; i < siz; i++){
            reverse_edge[edges[v][i].to] = put_edge(put_vertex(merge(merge(left[i], right[i + 1]), reverse_edge[v]), v), edges[v][i].rev_idx);
            bfs(edges[v][i].to);
        }
        ans[v] = put_vertex(merge(left[siz], reverse_edge[v]), v);
    }

public:
    void add_edge(int u, int v, int idx1, int idx2){
        edges[u].push_back({u, v, idx1, idx2});
        edges[v].push_back({v, u, idx2, idx1});
    }

    V build(int v = 0){
        root = v;
        out.resize(n);
        visited.assign(n, 0);
        return dfs(root);
    }

    vector<V> reroot(){
        reverse_edge.resize(n);
        reverse_edge[root] = e;
        ans.resize(n);
        bfs(root);
        return ans;
    }
};

ll n;

void input(){
    in(n);
}

// ll solve_sub(ll x){
//     auto dfs = [&](auto &self, ll curr, ll prev) -> vll {
//         vll dp(2);
//         dp[1] = 1;
//         for(auto x : G[curr]){
//             if(x == prev) continue;
//             vll ndp = self(self, x, curr);
//             dp[0] += max(ndp[0], ndp[1]);
//             dp[1] += ndp[0];
//         }
//         return dp;
//     };
//     vll dp = dfs(dfs, x, -1);
//     return dp[1];
// }

void solve(){
    using T = vll;
    auto merge = [&](T x, T y){
        T res = {x[0] + y[0], x[1] + y[1]};
        return res;
    };
    auto put_edge = [&](T x, int i){
        T res = {max(x[0], x[1]), x[0]};
        return res;
    };
    auto put_vertex = [&](T e, int v){
        T res = {e[0], e[1] + 1};
        return res;
    };
    T e = {0LL, 0LL};
    Rerooting<T, T> G(n, merge, e, put_edge, put_vertex);
    rep(i, n - 1){
        ll a, b; in(a, b); a--, b--;
        G.add_edge(a, b, i, i);
    }
    G.build();
    ll ans = INF;
    for(auto x : G.reroot()){
        chmin(ans, x[1]);
    }
    out(ans);
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(20);
    
    input();
    solve();
}
0