/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 2ms 580.0 KiB
#3 Accepted 3ms 532.0 KiB
#4 Accepted 4ms 532.0 KiB
#5 Accepted 4ms 532.0 KiB
#6 Accepted 4ms 532.0 KiB
#7 Accepted 4ms 532.0 KiB
#8 Accepted 4ms 532.0 KiB
#9 Accepted 3ms 532.0 KiB
#10 Accepted 1ms 532.0 KiB
#11 Accepted 1ms 532.0 KiB
#12 Accepted 299ms 177.52 MiB
#13 Accepted 417ms 293.582 MiB
#14 Accepted 323ms 177.434 MiB
#15 Accepted 322ms 198.797 MiB
#16 Accepted 216ms 94.812 MiB
#17 Accepted 300ms 165.27 MiB
#18 Accepted 273ms 156.02 MiB
#19 Accepted 383ms 253.941 MiB
#20 Accepted 212ms 97.93 MiB
#21 Accepted 425ms 293.68 MiB
#22 Accepted 150ms 36.055 MiB
#23 Accepted 345ms 220.336 MiB
#24 Accepted 287ms 143.723 MiB
#25 Accepted 185ms 76.52 MiB
#26 Accepted 151ms 28.871 MiB
#27 Accepted 180ms 70.566 MiB
#28 Accepted 100ms 24.566 MiB
#29 Accepted 389ms 263.035 MiB
#30 Accepted 240ms 122.316 MiB
#31 Accepted 355ms 229.391 MiB
#32 Accepted 405ms 254.02 MiB
#33 Accepted 365ms 241.668 MiB
#34 Accepted 150ms 42.512 MiB
#35 Accepted 201ms 88.77 MiB
#36 Accepted 171ms 61.27 MiB
#37 Accepted 359ms 238.77 MiB
#38 Accepted 175ms 67.445 MiB
#39 Accepted 298ms 171.383 MiB
#40 Accepted 204ms 91.816 MiB
#41 Accepted 384ms 260.02 MiB
#42 Accepted 129ms 63.52 MiB
#43 Accepted 159ms 75.691 MiB
#44 Accepted 81ms 31.77 MiB
#45 Accepted 85ms 31.941 MiB
#46 Accepted 84ms 31.684 MiB
#47 Accepted 1225ms 645.91 MiB
#48 Accepted 1198ms 635.043 MiB
#49 Accepted 799ms 484.508 MiB
#50 Accepted 150ms 71.77 MiB

Code

#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
using ll = long long;

int main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int n, k;
    cin >> n >> k;
    vector<int> a(n + 1);
    for(int i = 1; i <= n; i++) cin >> a[i];
    vector<vector<int>> g(n + 1);
    for(int i = 0; i + 1 < n; i++) {
        int u, v; cin >> u >> v;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    if(k == 1) {
        cout << *max_element(a.begin(), a.end()) << endl;
        return 0;
    }
    vector<vector<priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<>>>> dp(n + 1, vector<priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<>>> (k + 1)); 
    auto dfs = [&](auto&& self, int u, int par) -> ll {
        dp[u][1].push({a[u], -1});
        int dir = 0;
        ll mx = 0;
        for(auto &v: g[u]) {
            if(v == par) continue;
            mx = max(mx, self(self, v, u));
            for(int i = 2; i <= k; i++) {
                if(dp[v][i - 1].size() == 0) break;
                if(dp[v][i - 1].size() == 1) dp[u][i].push({a[u] + dp[v][i - 1].top().first, dir});
                else if(dp[v][i - 1].size() == 2) {
                    auto x = dp[v][i - 1].top();
                    dp[v][i - 1].pop();
                    dp[u][i].push({a[u] + dp[v][i - 1].top().first, dir});
                    dp[v][i - 1].push(x);
                }
                if(dp[u][i].size() > 2) dp[u][i].pop();
            }
            ++dir;
        }
        // cout << "==== " << u << " ===\n";
        // for(int i = 1; i <= k; i++) {
        //     cout << i << "=> ";
        //     auto x = dp[u][i];
        //     while(x.size()) {
        //         cout << "{" << x.top().first << " " << x.top().second << "}, ";
        //         x.pop();
        //     }
        //     cout << endl;
        // }
        for(int i = 1; i <= k; i++) {
            if(dp[u][i].size() && dp[u][k - i + 1].size()) {
                if(dp[u][i].top().second != dp[u][k - i + 1].top().second) {
                    mx = max(mx, dp[u][i].top().first + dp[u][k - i + 1].top().first - a[u]);
                }
                if(dp[u][i].size() == 2) {
                    auto tmp = dp[u][i];
                    tmp.pop();
                    if(tmp.top().second != dp[u][k - i + 1].top().second) {
                        mx = max(mx, tmp.top().first + dp[u][k - i + 1].top().first - a[u]);
                    }
                }
                if(dp[u][k - i + 1].size() == 2) {
                    auto tmp = dp[u][k - i + 1];
                    tmp.pop();
                    if(dp[u][i].top().second != tmp.top().second) {
                        mx = max(mx, dp[u][i].top().first + tmp.top().first - a[u]);
                    }
                }
                if(dp[u][i].size() == 2 && dp[u][k - i + 1].size() == 2) {
                    auto tmp1 = dp[u][i];
                    tmp1.pop();
                    auto tmp2 = dp[u][k - i + 1];
                    tmp2.pop();
                    if(tmp1.top().second != tmp2.top().second) {
                        mx = max(mx, tmp1.top().first + tmp2.top().first - a[u]);
                    }
                }
            }
        }
        // cout << u << "===> " << mx << endl;
        return mx;
    };
    cout << dfs(dfs, 1, 0) << endl;
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1161 Max path sum (Hard Version)
Language
C++17 (G++ 13.2.0)
Submit At
2025-03-24 19:18:46
Judged At
2025-03-24 19:18:46
Judged By
Score
100
Total Time
1225ms
Peak Memory
645.91 MiB