# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
83369 | 2018-11-07T10:59:59 Z | charlies_moo | Dostavljač (COCI18_dostavljac) | C++17 | 218 ms | 2500 KB |
#include <cstdio> #include <cstring> #include <vector> #include <algorithm> using namespace std; typedef vector<int> vi; typedef struct { int *dp1, *dp2; } node; node *dfs(vi e[], int a[], int x, int p, int m) { node *ret = new node(); ret->dp1 = new int[m+1]; ret->dp2 = new int[m+1]; for (int i = 1; i <= m; i++) { ret->dp1[i] = ret->dp2[i] = a[x]; } ret->dp1[0] = ret->dp2[0] = 0; for (int i = 0; i < e[x].size(); i++) { if (e[x][i] == p) { continue; } node *t = dfs(e, a, e[x][i], x, m); for (int j = m; j >= 0; j--) { for (int k = 0; k <= j - 1; k++) { if (j - k - 2 >= 0) { ret->dp1[j] = max(ret->dp1[j], ret->dp1[j-k-2] + t->dp1[k]); } ret->dp2[j] = max(ret->dp2[j], ret->dp1[j-k-1] + t->dp2[k]); } } } return ret; } int main() { int n, m; scanf("%d %d", &n, &m); int a[n]; for (int i = 0; i < n; i++) { scanf("%d", &a[i]); } vi e[n]; for (int i = 0; i < n - 1; i++) { int u, v; scanf("%d %d", &u, &v); u--, v--; e[u].push_back(v); e[v].push_back(u); } printf("%d\n", dfs(e, a, 0, -1, m)->dp2[m]); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 400 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 556 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 7 ms | 616 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 616 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 54 ms | 1008 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 21 ms | 1008 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 104 ms | 1816 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 218 ms | 2500 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |