# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
574438 | saarang123 | Biochips (IZhO12_biochips) | C++17 | 2106 ms | 297644 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int MXN = 200 * 1000 + 3;
const int MXM = 503;
int dp[MXN][MXM], a[MXN];
vector<int> g[MXN];
int n, m;
void dfs(int v) {
for(int u : g[v]) {
dfs(u);
for(int i = m; i >= 0; i--)
for(int j = 0; j <= i; j++) if(i - j >= 0 && dp[v][i - j] != -1 && dp[u][j] != -1)
dp[v][i] = max(dp[v][i], dp[v][i - j] + dp[u][j]);
}
dp[v][1] = max(dp[v][1], a[v]);
}
// https://github.com/Aeren1564/Algorithms
template<bool Enable_small_to_large = true>
struct disjoint_set {
int n, cc;
vector<int> p;
disjoint_set(int n): n(n), p(n, -1), cc(n) { }
int root(int u) {
return p[u] < 0 ? u : p[u] = root(p[u]);
}
bool share(int a, int b) {
return root(a) == root(b);
}
int size(int u) {
return -p[root(u)];
}
bool merge(int u, int v) {
u = root(u), v = root(v);
if(u == v) return false;
if constexpr(Enable_small_to_large) if(p[u] > p[v]) swap(u, v);
p[u] += p[v], p[v] = u; cc--;
return true;
}
void clear() {
fill(p.begin(), p.end(), -1);
}
vector<vector<int>> group_up() {
vector<vector<int>> g(n);
for(auto i = 0; i < n; ++ i) g[root(i)].push_back(i);
g.erase(remove_if(g.begin(), g.end(), [&](auto &s){ return s.empty(); }), g.end());
return g;
}
};
signed main() {
std::ios::sync_with_stdio(0);
std::cin.tie(0);
cin >> n >> m;
disjoint_set dsu(n);
int r = -1;
for(int p, i = 1; i <= n; i++) {
cin >> p >> a[i];
dp[i][0] = 0;
for(int j = 1; j <= m; j++)
dp[i][j] = -1;
if(p) {
g[p].push_back(i);
assert(dsu.merge(i - 1, p - 1));
}
else
r = i;
}
dfs(r);
// for(int i = 1; i <= n; i++) {
// for(int j = 1; j <= m; j++)
// cout << dp[i][j] << ' ';
// cout << '\n';
// }
cout << dp[r][m] << '\n';
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |