Submission #200765

#TimeUsernameProblemLanguageResultExecution timeMemory
200765BTheroFireworks (APIO16_fireworks)C++17
19 / 100
24 ms764 KiB
// Why am I so dumb? :c
// chrono::system_clock::now().time_since_epoch().count()
                                                  
#include<bits/stdc++.h>
//#include<ext/pb_ds/assoc_container.hpp>
//#include<ext/pb_ds/tree_policy.hpp>

#define pb push_back
#define mp make_pair

#define all(x) (x).begin(), (x).end()

#define fi first
#define se second

using namespace std;
//using namespace __gnu_pbds;

typedef long long ll;   
typedef pair<int, int> pii;
//template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

const int MAXN = (int)3e2 + 5;
const int INF = (int)1e6;

int par[MAXN], arr[MAXN];

vector<int> adj[MAXN];

int dp[MAXN][MAXN];

int n, m;

void dfs(int v, int pr = -1) {
    if (v > n) {
        for (int i = 1; i <= 300; ++i) {
            dp[v][i] = INF;
        }

        dp[v][0] = 0;
        return;
    }

    for (int to : adj[v]) {
        if (to == pr) {
            continue;
        }

        dfs(to, v);

        for (int i = 0; i <= 300; ++i) {
            int best = INF;

            for (int j = 0; j <= i; ++j) {
                best = min(best, dp[to][j] + abs(arr[to] - (i - j)));                                                    
            }

            dp[v][i] += best;
        }                 
    }
}

void solve() {
    scanf("%d %d", &n, &m);

    for (int i = 2; i <= n + m; ++i) {
        scanf("%d %d", &par[i], &arr[i]);
        adj[par[i]].pb(i);
    }

    dfs(1);
    int ans = INF;

    for (int i = 0; i <= 300; ++i) {
        ans = min(ans, dp[1][i]);
    }

    printf("%d\n", ans);
}

int main() {
    int tt = 1;

    while (tt--) {
        solve();
    }

    return 0;
}

Compilation message (stderr)

fireworks.cpp: In function 'void solve()':
fireworks.cpp:64:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d", &n, &m);
     ~~~~~^~~~~~~~~~~~~~~~~
fireworks.cpp:67:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d %d", &par[i], &arr[i]);
         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...