Submission #136318

# Submission time Handle Problem Language Result Execution time Memory
136318 2019-07-25T06:49:57 Z BThero Chase (CEOI17_chase) C++17
30 / 100
2130 ms 330184 KB
// Why am I so dumb? :c
// chrono::system_clock::now().time_since_epoch().count()

//#pragma GCC optimize("Ofast")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")

#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 debug(x) cerr << #x << " = " << x << '\n';

#define fi first
#define se second

using namespace std;
using namespace __gnu_pbds;

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

const int MAXN = (int)1e5 + 5;
const ll INF = (ll)1e15;

ll dp[2][105][MAXN], dp2[2][105][MAXN];

vector<int> adj[MAXN];

ll neigh[MAXN];

int arr[MAXN];

int n, lim;

ll ans;

void upd(ll &a, ll b) {
    if (b > a) {
        a = b;
    }
}

void dfs(int v, int pr = -1) {
    for (int s = 0; s < 2; ++s) {
        for (int k = 0; k <= lim; ++k) {
            dp[s][k][v] = -INF;
            dp2[s][k][v] = -INF;
        }
    }
    
    dp[0][0][v] = 0;
    dp2[0][0][v] = 0;
    dp[1][1][v] = neigh[v];
    dp2[1][1][v] = neigh[v]; 

    for (int to : adj[v]) {
        if (to != pr) {
            dfs(to, v);
            
            for (int k = 0; k <= lim; ++k) {
                upd(dp[0][k][v], max(dp[1][k][to] - arr[v], dp[0][k][to]));
                upd(dp[1][k + 1][v], max(dp[0][k][to], dp[1][k][to] - arr[v]) + neigh[v]);
                upd(dp2[0][k][v], max(dp2[1][k][to], dp2[0][k][to]));
                upd(dp2[1][k + 1][v], max(dp2[0][k][to], dp2[1][k][to]) + neigh[v] - arr[to]);
            }
        }
    }
}

void solve() {
    scanf("%d %d", &n, &lim);
    
    for (int i = 1; i <= n; ++i) {
        scanf("%d", &arr[i]);
    }
    
    for (int i = 1; i < n; ++i) {
        int u, v;
        scanf("%d %d", &u, &v);
        adj[u].pb(v);
        adj[v].pb(u);
        neigh[u] += arr[v];
        neigh[v] += arr[u];
    }
    
    dfs(1);
    
    for (int i = 1; i <= n; ++i) {
        for (int k = 0; k <= lim; ++k) {
            for (int s = 0; s < 2; ++s) {
                ans = max(ans, dp[s][k][i]);
                ans = max(ans, dp2[s][k][i]);
            }
        }
    }
    
    printf("%lld\n", ans);
}

int main() {
    int tt = 1;

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

    return 0;
}

Compilation message

chase.cpp: In function 'void solve()':
chase.cpp:75:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d", &n, &lim);
     ~~~~~^~~~~~~~~~~~~~~~~~~
chase.cpp:78:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &arr[i]);
         ~~~~~^~~~~~~~~~~~~~~
chase.cpp:83:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d %d", &u, &v);
         ~~~~~^~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 4 ms 2808 KB Output is correct
2 Incorrect 4 ms 2808 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 2808 KB Output is correct
2 Incorrect 4 ms 2808 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1407 ms 328132 KB Output is correct
2 Correct 1400 ms 330184 KB Output is correct
3 Correct 783 ms 326000 KB Output is correct
4 Correct 140 ms 17016 KB Output is correct
5 Correct 2112 ms 322376 KB Output is correct
6 Correct 2130 ms 325592 KB Output is correct
7 Correct 2117 ms 325548 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 4 ms 2808 KB Output is correct
2 Incorrect 4 ms 2808 KB Output isn't correct
3 Halted 0 ms 0 KB -