/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 332.0 KiB
#2 Wrong Answer 2ms 500.0 KiB
#3 Wrong Answer 3ms 736.0 KiB
#4 Wrong Answer 40ms 720.0 KiB
#5 Time Exceeded ≥1012ms ≥4.105 MiB
#6 Time Exceeded ≥1009ms ≥3.977 MiB
#7 Time Exceeded ≥1035ms ≥4.242 MiB
#8 Wrong Answer 128ms 660.0 KiB
#9 Time Exceeded ≥1044ms ≥1.07 MiB
#10 Time Exceeded ≥1010ms ≥2.996 MiB
#11 Time Exceeded ≥1006ms ≥4.766 MiB
#12 Time Exceeded ≥1026ms ≥2.656 MiB
#13 Time Exceeded ≥1017ms ≥5.652 MiB
#14 Time Exceeded ≥1020ms ≥4.062 MiB
#15 Time Exceeded ≥1042ms ≥1.293 MiB
#16 Time Exceeded ≥1060ms ≥5.027 MiB
#17 Time Exceeded ≥1015ms ≥5.141 MiB
#18 Time Exceeded ≥1014ms ≥5.031 MiB
#19 Time Exceeded ≥1025ms ≥31.992 MiB
#20 Time Exceeded ≥1016ms ≥31.801 MiB
#21 Time Exceeded ≥1017ms ≥31.078 MiB
#22 Accepted 182ms 39.945 MiB
#23 Time Exceeded ≥1028ms ≥31.098 MiB
#24 Time Exceeded ≥1066ms ≥31.613 MiB
#25 Time Exceeded ≥1008ms ≥31.531 MiB
#26 Wrong Answer 654ms 2.305 MiB

Code

#include<bits/stdc++.h>
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout << it << " "; cout << endl;
using namespace std;
using ll = long long;
using ld = long double;

void solve() {
    ll n, cnt = 0;
    cin >> n;
    vector<ll> val(n + 1);
    for (int i = 1; i <= n; i++) {
        ll x; cin >> x;
        val[i] = x;
        if(x) ++cnt;
    }
    vector<set<ll>> g(n + 1);
    for(int i = 0; i + 1 < n; i++) {
        ll u, v; cin >> u >> v;
        g[u].insert(v);
        g[v].insert(u);
    }
    if(cnt == 0) {
        cout << 0 << endl;
        return;
    }

    priority_queue<ll> pq;
    for(int i = 1; i <= n; i++) {
        if(g[i].size() == 1 && val[i] == 0) pq.push(i);
    }
    while(pq.size()) {
        ll u = pq.top();
        ll v = *g[u].begin();
        pq.pop();
        if(g[v].size() == 1 && val[v] == 0) {
            pq.push(v);
        }
        g[u].clear();
        g[v].erase(u);
    }

    vector<ll> depth(n + 1);
    auto dfs2 = [&](int u, int par, int d, auto&& self) -> void {
        depth[u] = d;
        for(auto &i: g[u]) {
            if(i == par) continue;
            self(i, u, d + 1, self);
        }
    };
    ll root = 1;
    for(int i = 1; i <= n; i++) {
        if(g[i].size() == 1) {
            dfs2(i, -1, 0, dfs2);
            root = max_element(all(depth)) - depth.begin();
        }
    }
    ll ans = 0;
    auto dfs = [&](int u, int par, int d, auto&& self) -> ll {
        ll mxD = d;
        for(auto &v: g[u]) {
            if(v == par) continue;
            // cout << u << " " << v << endl;
            ++ans;
            mxD = max(mxD, self(v, u, d + 1, self));
            ++ans;
        }
        return mxD;
        // cout << u << " => " << c << endl;
    };
    ans -= dfs(root, -1, 0, dfs);
    cout << ans << endl;
    return;
}

signed main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++) {
        // cout << "Case " << t << ": ";
        solve();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1078 Apple on Tree
Contest
Bangladesh 2.0
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 17:21:26
Judged At
2024-10-03 13:22:12
Judged By
Score
7
Total Time
≥1066ms
Peak Memory
≥39.945 MiB