/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 556.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Wrong Answer 1ms 560.0 KiB
#5 Accepted 1ms 584.0 KiB
#6 Accepted 1ms 540.0 KiB
#7 Accepted 1ms 540.0 KiB
#8 Accepted 1ms 584.0 KiB
#9 Accepted 2ms 560.0 KiB
#10 Accepted 1ms 540.0 KiB
#11 Accepted 2ms 584.0 KiB
#12 Accepted 347ms 177.52 MiB
#13 Accepted 446ms 293.578 MiB
#14 Accepted 337ms 177.438 MiB
#15 Accepted 358ms 198.859 MiB
#16 Accepted 236ms 94.934 MiB
#17 Accepted 321ms 165.18 MiB
#18 Accepted 313ms 156.102 MiB
#19 Accepted 426ms 253.875 MiB
#20 Accepted 245ms 97.953 MiB
#21 Accepted 450ms 293.77 MiB
#22 Accepted 172ms 36.035 MiB
#23 Accepted 395ms 220.449 MiB
#24 Accepted 307ms 143.918 MiB
#25 Accepted 219ms 76.875 MiB
#26 Accepted 152ms 28.77 MiB
#27 Accepted 204ms 70.562 MiB
#28 Accepted 128ms 24.523 MiB
#29 Accepted 423ms 263.09 MiB
#30 Accepted 275ms 122.504 MiB
#31 Accepted 391ms 229.52 MiB
#32 Accepted 424ms 254.07 MiB
#33 Accepted 407ms 241.77 MiB
#34 Accepted 176ms 42.562 MiB
#35 Accepted 241ms 88.734 MiB
#36 Accepted 198ms 61.27 MiB
#37 Accepted 405ms 238.773 MiB
#38 Accepted 207ms 67.254 MiB
#39 Accepted 346ms 171.465 MiB
#40 Accepted 242ms 91.809 MiB
#41 Accepted 424ms 260.152 MiB
#42 Accepted 123ms 63.438 MiB
#43 Accepted 133ms 75.844 MiB
#44 Accepted 84ms 32.062 MiB
#45 Accepted 84ms 31.934 MiB
#46 Accepted 82ms 31.77 MiB
#47 Accepted 1167ms 645.941 MiB
#48 Accepted 1162ms 635.008 MiB
#49 Accepted 784ms 484.52 MiB
#50 Accepted 142ms 71.941 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);
    }
    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:16:43
Judged At
2025-03-24 19:16:43
Judged By
Score
98
Total Time
1167ms
Peak Memory
645.941 MiB