# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
784459 |
2023-07-16T06:57:45 Z |
blue |
Chase (CEOI17_chase) |
C++17 |
|
433 ms |
174624 KB |
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vll = vector<ll>;
using vi = vector<int>;
#define sz(x) int(x.size())
const int mx = 100'000;
const int mxv = 100;
int n;
int m;
vll w(1+mx, 0);
vi edge[1+mx];
vi par(1 + mx, 0);
vll wsum(1+mx, 0);
vi subtree(1+mx, 1);
void dfs(int u)
{
for(int v : edge[u])
{
if(par[u] == v)
continue;
par[v] = u;
dfs(v);
subtree[u] += subtree[v];
}
}
ll up[1+mx][1+mxv];
ll dn[1+mx][1+mxv];
ll res = 0;
void dfs2(int u)
{
for(int v : edge[u])
{
if(par[u] != v)
dfs2(v);
}
//1. calculate up
up[u][0] = 0;
for(int k = 1; k <= m; k++)
up[u][k] = wsum[u];
for(int k = 0; k <= m; k++)
{
for(int v : edge[u])
{
if(par[u] == v)
continue;
up[u][k] = max(up[u][k], up[v][k]);
if(k > 0)
up[u][k] = max(up[u][k], up[v][k-1] + wsum[u] - w[v]);
}
}
//2. calculate down
dn[u][0] = 0;
for(int k = 1; k <= m; k++)
dn[u][k] = wsum[u] - w[par[u]];
for(int k = 0; k <= m; k++)
{
for(int v : edge[u])
{
if(par[u] == v)
continue;
dn[u][k] = max(dn[u][k], dn[v][k]);
if(k > 0)
dn[u][k] = max(dn[u][k], dn[v][k-1] + wsum[u] - w[par[u]]);
}
}
//3. update res
//single element
res = max(res, wsum[u]);
//up path
res = max(res, up[u][m]);
//down path
for(int v : edge[u])
{
if(par[u] != v)
{
res = max(res, dn[v][m]);
if(m-1 >= 0)
res = max(res, dn[v][m-1] + wsum[u]);
}
}
//combination
vll temp(1+m, -1'000'000'000'000'000'000LL);
for(int v : edge[u])
{
for(int j = 0; j <= m; j++)
res = max(res, temp[m-j] + dn[v][j]);
////////
for(int j = 0; j <= m; j++)
{
temp[j] = max(temp[j], up[v][j]);
if(j >= 1)
temp[j] = max(temp[j], up[v][j-1] + wsum[u] - w[v]);
}
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
for(int i = 1; i <= n; i++)
cin >> w[i];
for(int e = 1; e <= n-1; e++)
{
int a, b;
cin >> a >> b;
edge[a].push_back(b);
edge[b].push_back(a);
}
dfs(1);
for(int i = 1; i <= n; i++)
for(int j : edge[i])
wsum[i] += w[j];
for(int i = 1; i <= n; i++)
{
for(int j = 0; j <= m; j++)
{
up[i][j] = 0;
dn[i][j] = 0;
}
}
dfs2(1);
cout << res << '\n';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
5056 KB |
Output is correct |
2 |
Correct |
2 ms |
4948 KB |
Output is correct |
3 |
Correct |
2 ms |
5052 KB |
Output is correct |
4 |
Incorrect |
2 ms |
4948 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
5056 KB |
Output is correct |
2 |
Correct |
2 ms |
4948 KB |
Output is correct |
3 |
Correct |
2 ms |
5052 KB |
Output is correct |
4 |
Incorrect |
2 ms |
4948 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
280 ms |
174616 KB |
Output is correct |
2 |
Correct |
257 ms |
174624 KB |
Output is correct |
3 |
Correct |
433 ms |
168804 KB |
Output is correct |
4 |
Correct |
133 ms |
168400 KB |
Output is correct |
5 |
Correct |
295 ms |
168480 KB |
Output is correct |
6 |
Correct |
295 ms |
168476 KB |
Output is correct |
7 |
Correct |
320 ms |
168484 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
5056 KB |
Output is correct |
2 |
Correct |
2 ms |
4948 KB |
Output is correct |
3 |
Correct |
2 ms |
5052 KB |
Output is correct |
4 |
Incorrect |
2 ms |
4948 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |