# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
464211 | nonsensenonsense1 | Fireworks (APIO16_fireworks) | C++17 | 229 ms | 60288 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 <cstdio>
#include <queue>
#include <vector>
const int N = 300000;
int n, m, top[N];
std::vector<int> g[N];
std::pair<std::priority_queue<long long> *, long long> dfs(int v)
{
std::pair<std::priority_queue<long long> *, long long> cur;
if (g[v].empty()) {
cur.first = new std::priority_queue<long long>;
cur.first->push(0);
cur.first->push(0);
}
else cur = dfs(g[v][0]);
for (int i = 1; i < (int)g[v].size(); ++i) {
std::pair<std::priority_queue<long long> *, long long> s = dfs(g[v][i]);
if (s.first->size() > cur.first->size()) std::swap(s, cur);
cur.second += s.second;
do {
cur.first->push(s.first->top());
s.first->pop();
} while (!s.first->empty());
}
for (int i = 0; i < (int)g[v].size() - 1; ++i) {
cur.second += cur.first->top();
cur.first->pop();
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |