Submission #37058

# Submission time Handle Problem Language Result Execution time Memory
37058 2017-12-20T19:11:38 Z DoanPhuDuc Chase (CEOI17_chase) C++
0 / 100
563 ms 273016 KB
#include <bits/stdc++.h>

#define FOR(x, a, b) for (int x = a; x <= b; ++x)
#define FOD(x, a, b) for (int x = a; x >= b; --x)
#define REP(x, a, b) for (int x = a; x < b; ++x)
#define DEBUG(X) { cout << #X << " = " << X << endl; }
#define PR(A, n) { cout << #A << " = "; FOR(_, 1, n) cout << A[_] << " "; cout << endl; }
#define PR0(A, n)  { cout << #A << " = "; REP(_, 0, n) cout << A[_] << " "; cout << endl; }

using namespace std;

typedef long long LL;
typedef pair <int, int> II;

const int N = 1e5 + 10;
const int A = 1e2 + 10;
const LL INFL = (LL)1e18;

int n, m;
int a[N], p[N];

LL S[N], C[N][2];
LL f[N][A][2], g[N][A];

vector <int> adj[N];

void DFS(int u, int par = -1) {
    S[u] = a[u];
    REP(k, 0, adj[u].size()) {
        int v = adj[u][k]; if (v == par) continue;
        S[u] += a[v];
        p[v] = u;
        DFS(v, u);
    }
}

void DP(int u, int par = -1) {
    f[u][0][0] = 0;
    f[u][1][1] = S[u] - a[u];
    g[u][0] = 0;
    g[u][1] = S[u] - a[u];
    REP(k, 0, adj[u].size()) {
        int v = adj[u][k]; if (v == par) continue;
        DP(v, u);
        FOR(i, 1, m) {
            f[u][i][0] = max(f[u][i][0], f[v][i][1] + a[u]);
            f[u][i][0] = max(f[u][i][0], f[v][i][0]);

            f[u][i][1] = max(f[u][i][1], f[v][i - 1][1] + S[u] - a[v]);
            f[u][i][1] = max(f[u][i][1], f[v][i - 1][0] + S[u] - a[v] - a[u]);

            g[u][i] = max(g[u][i], g[v][i]);
            g[u][i] = max(g[u][i], g[v][i - 1] + S[u] - a[u]);
        }
    }
}

int main() {
    #ifdef LOCAL
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    #endif // LOCAL
    scanf("%d%d", &n, &m);
    FOR(i, 1, n) scanf("%d", &a[i]);
    FOR(i, 1, n - 1) {
        int u, v; scanf("%d%d", &u, &v);
        adj[u].push_back(v);
        adj[v].push_back(u);
    }
    int Root = 1;
    FOR(u, 1, n)
        FOR(i, 0, m)
            FOR(k, 0, 1) f[u][i][k] = -INFL;
    FOR(u, 1, n)
        FOR(i, 0, m) g[u][i] = -INFL;
    FOR(u, 1, n) {
        FOR(i, 1, m) if (g[u][i] < 0) g[u][i] = g[u][i - 1];
        FOR(i, 1, m)
            FOR(k, 0, 1) if (f[u][i][k] < 0) f[u][i][k] = f[u][i - 1][k];
    }
    DFS(Root);
    DP(Root);
    LL ans = -INFL;
    FOR(w, 1, n) {
        ans = max(ans, max(f[w][m][0], f[w][m][1] + a[p[w]]));
        ans = max(ans, g[w][m]);
        FOR(i, 1, m)
            FOR(k, 0, 1) C[i][k] = -INFL;
        REP(k, 0, adj[w].size()) {
            int v = adj[w][k]; if (v == p[w]) continue;
            // u has drop
            FOR(i, 1, m - 1) {
                ans = max(ans, C[i][1] + g[v][m - i - 1] + a[v]);
                ans = max(ans, C[i][0] + g[v][m - i - 1] + a[v]);
            }
            // u has not drop
            FOR(i, 1, m) {
                ans = max(ans, C[i][1] + g[v][m - i]);
                ans = max(ans, C[i][0] + g[v][m - i]);
            }
            FOR(i, 1, m)
                FOR(j, 0, 1)
                    C[i][j] = max(C[i][j], f[v][i][j] + (j == 1 ? a[p[v]] : 0));
        }
        FOR(i, 1, m)
            FOR(k, 0, 1) C[i][k] = -INFL;
        reverse(adj[w].begin(), adj[w].end());
        REP(k, 0, adj[w].size()) {
            int v = adj[w][k]; if (v == p[w]) continue;
            // u has drop
            FOR(i, 1, m - 1) {
                ans = max(ans, C[i][1] + g[v][m - i - 1] + a[v]);
                ans = max(ans, C[i][0] + g[v][m - i - 1] + a[v]);
            }
            // u has not drop
            FOR(i, 1, m) {
                ans = max(ans, C[i][1] + g[v][m - i]);
                ans = max(ans, C[i][0] + g[v][m - i]);
            }
            FOR(i, 1, m)
                FOR(j, 0, 1)
                    C[i][j] = max(C[i][j], f[v][i][j] + (j == 1 ? a[p[v]] : 0));
        }
    }
    printf("%lld", ans);
    return 0;
}

Compilation message

chase.cpp: In function 'void DFS(int, int)':
chase.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define REP(x, a, b) for (int x = a; x < b; ++x)
                                        ^
chase.cpp:29:5: note: in expansion of macro 'REP'
     REP(k, 0, adj[u].size()) {
     ^
chase.cpp: In function 'void DP(int, int)':
chase.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define REP(x, a, b) for (int x = a; x < b; ++x)
                                        ^
chase.cpp:42:5: note: in expansion of macro 'REP'
     REP(k, 0, adj[u].size()) {
     ^
chase.cpp: In function 'int main()':
chase.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define REP(x, a, b) for (int x = a; x < b; ++x)
                                        ^
chase.cpp:89:9: note: in expansion of macro 'REP'
         REP(k, 0, adj[w].size()) {
         ^
chase.cpp:5:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define REP(x, a, b) for (int x = a; x < b; ++x)
                                        ^
chase.cpp:108:9: note: in expansion of macro 'REP'
         REP(k, 0, adj[w].size()) {
         ^
chase.cpp:63:26: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d", &n, &m);
                          ^
chase.cpp:64:36: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     FOR(i, 1, n) scanf("%d", &a[i]);
                                    ^
chase.cpp:66:40: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         int u, v; scanf("%d%d", &u, &v);
                                        ^
# Verdict Execution time Memory Grader output
1 Correct 0 ms 265328 KB Output is correct
2 Correct 0 ms 265328 KB Output is correct
3 Correct 0 ms 265328 KB Output is correct
4 Incorrect 0 ms 265328 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 265328 KB Output is correct
2 Correct 0 ms 265328 KB Output is correct
3 Correct 0 ms 265328 KB Output is correct
4 Incorrect 0 ms 265328 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 563 ms 273016 KB Output is correct
2 Correct 563 ms 272996 KB Output is correct
3 Incorrect 403 ms 269044 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 265328 KB Output is correct
2 Correct 0 ms 265328 KB Output is correct
3 Correct 0 ms 265328 KB Output is correct
4 Incorrect 0 ms 265328 KB Output isn't correct
5 Halted 0 ms 0 KB -