Submission #722453

# Submission time Handle Problem Language Result Execution time Memory
722453 2023-04-12T02:54:11 Z grossly_overconfident Road Closures (APIO21_roads) C++17
0 / 100
2000 ms 1048576 KB
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
//#define int long long
//#define INT_MAX LONG_LONG_MAX

long long findscore(set<pair<long long, pair<long long, long long>>>& candidates, int k, int j){
    long long score = 0;
    for (auto i : candidates){
        if (j <= k){
            score += min(i.second.first, i.second.second);
        }
        else{
            j--;
            score += i.second.second;
        }
    }
    return score;
}

long long solve(vector<vector<long long>>& dp, vector<vector<pair<int, int>>>& adj, int p, int n, int k, int i, int j){
    if (dp[i][j] != -1){
        return dp[i][j];
    }
    bool ac = true;
    set<pair<long long, pair<long long, long long>>> candidates;
    for (auto a : adj[i]){
        if (a.first != p){
            ac = false;
            long long op1 = solve(dp, adj, i, n, k, a.first, adj[a.first].size());
            long long op2 = solve(dp, adj, i, n, k, a.first, adj[a.first].size() - 1) + a.second;
            candidates.insert({op2 - op1, {op1, op2}});
        }
    }
    if (ac){
        return 0;
    }
    return dp[i][j] = findscore(candidates, k, j);
}

vector<long long> minimum_closure_costs(int n, vector<int> u, vector<int> v, vector<int> w){
    vector<long long> out(n);
    vector<vector<pair<int, int>>> adj(n);
    for (int i = 0; i < n - 1; ++i){
        adj[u[i]].push_back({v[i], w[i]});
        adj[v[i]].push_back({u[i], w[i]});
    }

    int leaf = 0;

    for (int i = 0; i < n; ++i){
        if (adj[i].size() == 1){
            leaf = i;
            break;
        }
    }
    /*
    vector<vector<long long>> dp(n + 10, vector<long long>(n + 10, -1));
    cout << solve(dp, adj, -1, n, 1, leaf, adj[leaf].size()) << endl;

    for (auto a : dp){
        for (auto b : a){
            cout << b << " ";
        }
        cout << endl;
    }
    */
    for (int i = 0; i < n; ++i){
        vector<vector<long long>> dp(n + 10, vector<long long>(n + 10, -1));
        out[i] = solve(dp, adj, -1, n, i, leaf, adj[leaf].size());
    }
    
    return out;
}
/*
int main(){
    int n;
    cin >> n;
    vector<int> u(n - 1), v(n - 1), w(n - 1);
    for (int i = 0; i < n - 1; ++i){
        cin >> u[i];
    }
    for (int i = 0; i < n - 1; ++i){
        cin >> v[i];
    }
    for (int i = 0; i < n - 1; ++i){
        cin >> w[i];
    }
    vector<long long> out;
    out = minimum_closure_costs(n, u, v, w);
    for (auto a : out){
        cout << a << " ";
    }
}
*/
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Execution timed out 2066 ms 28592 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 300 KB Output is correct
2 Runtime error 543 ms 1048576 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 10 ms 516 KB Output is correct
5 Correct 28 ms 680 KB Output is correct
6 Incorrect 40 ms 636 KB Output isn't correct
7 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 10 ms 516 KB Output is correct
5 Correct 28 ms 680 KB Output is correct
6 Incorrect 40 ms 636 KB Output isn't correct
7 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 441 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 441 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Execution timed out 2066 ms 28592 KB Time limit exceeded
3 Halted 0 ms 0 KB -