# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
982169 | 12345678 | Fireworks (APIO16_fireworks) | C++17 | 185 ms | 94520 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int nx=6e5+5;
#define ll long long
ll n, m, p, x, res;
vector<pair<ll, ll>> d[nx];
priority_queue<ll> pq[nx];
void dfs(int u)
{
for (auto [v, w]:d[u])
{
dfs(v);
res+=w;
ll a=pq[v].top();
pq[v].pop();
ll b=pq[v].top();
pq[v].pop();
pq[v].push(a+w);
pq[v].push(b+w);
if (pq[v].size()>pq[u].size()) swap(pq[u], pq[v]);
while (!pq[v].empty()) pq[u].push(pq[v].top()), pq[v].pop();
}
for (int i=1; i<d[u].size(); i++) pq[u].pop();
}
int main()
{
cin.tie(NULL)->sync_with_stdio(false);
cin>>n>>m;
for (int i=2; i<=n+m; i++) cin>>p>>x, d[p].push_back({i, x});
for (int i=n+1; i<=n+m; i++) pq[i].push(0), pq[i].push(0);
dfs(1);
pq[1].pop();
while (!pq[1].empty()) res-=pq[1].top(), pq[1].pop();
cout<<res;
}
컴파일 시 표준 에러 (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... |