Submission #998604

# Submission time Handle Problem Language Result Execution time Memory
998604 2024-06-14T10:40:06 Z NoLove Museum (CEOI17_museum) C++14
0 / 100
543 ms 1048576 KB
/**
 *    author : Lăng Trọng Đạt
 *    created: 14-06-2024 
**/
#include <bits/stdc++.h>
using namespace std;
#define int long long

const int MAXN = 1e4 + 5;
int sz[MAXN];
vector<pair<int, int>> adj[MAXN];
int dp[MAXN][MAXN][2];
int n, k, s;

void dfs(int v, int prv = -1) {
    sz[v] = 1;
    dp[v][1][0] = dp[v][1][1] = 0;
    dp[v][0][0] = dp[v][0][1] = 0;
    // db(dp[v][2][1])
    for (auto[u, w] : adj[v]) {
        if (u == prv) continue;
        dfs(u, v);
        // db(v, u, w)
        for (int i = sz[v] + sz[u]; i > 0; i--) {
            for (int j = max(1LL, i - sz[v]); j <= sz[u]; j++) {
                dp[v][i][1] = min(dp[v][i][1], dp[v][i - j][1] + dp[u][j][1] + 2*w);
                dp[v][i][0] = min(dp[v][i][0], dp[v][i - j][0] + dp[u][j][1] + 2*w);
                dp[v][i][0] = min(dp[v][i][0], dp[v][i - j][1] + dp[u][j][0] + w);
                // if (v == 1 && i == 3 && dp[1][3][1] == 0) {
                //     db(j, u, w, dp[u][j][1])
                // }
            }
        }
        sz[v] += sz[u];
    }
    // db(v)
    // for (int i = 1; i <= sz[v]; i++) {
    //     db(i, dp[v][i][1])
    // }
}
main() {
    // freopen("hi.inp", "r", stdin);
    
    cin >> n >> k >> s;
    int a, b, w;
    for (int i = 1; i < n; i++) {
        cin >> a >> b >> w;
        adj[a].push_back({b, w});
        adj[b].push_back({a, w});
    }
    
    memset(dp, 0x3f, sizeof(dp));
    dfs(s);
    cout << dp[s][k][0];
}

Compilation message

museum.cpp: In function 'void dfs(long long int, long long int)':
museum.cpp:20:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   20 |     for (auto[u, w] : adj[v]) {
      |              ^
museum.cpp: At global scope:
museum.cpp:41:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   41 | main() {
      | ^~~~
# Verdict Execution time Memory Grader output
1 Runtime error 463 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 543 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 543 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 463 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -