# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
794257 | IvanJ | Fireworks (APIO16_fireworks) | C++17 | 143 ms | 58944 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define pb push_back
#define x first
#define y second
#define all(a) (a).begin(), (a).end()
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
const int maxn = 3e5 + 5;
struct Data {
ll a, b;
priority_queue<ll> *s;
Data operator +(Data d) {
Data ret;
ret.a = a + d.a;
ret.b = b + d.b;
if(s->size() > d.s->size()) {
ret.s = s;
while(d.s->size())
ret.s->push(d.s->top()), d.s->pop();
} else {
ret.s = d.s;
while(s->size())
ret.s->push(s->top()), s->pop();
}
return ret;
}
ll get_min() {
while(a > 0)
a--, b += s->top(), s->pop();
return b;
}
};
int n, m;
int p[maxn];
ll c[maxn];
Data D[maxn];
vector<pair<int, ll>> adj[maxn];
int main() {
scanf("%d%d", &n, &m);
for(int i = 1;i < n + m;i++)
scanf("%d%lld", p + i, c + i), p[i]--;
for(int i = 0;i < n + m;i++)
D[i].a = 0, D[i].b = 0, D[i].s = new priority_queue<ll>;
for(int i = n;i < n + m;i++) {
D[i].a = 1, D[i].b = -c[i];
D[i].s->push(c[i]);
D[i].s->push(c[i]);
D[p[i]] = D[p[i]] + D[i];
}
for(int i = n - 1;i > 0;i--) {
while(D[i].a > 1) {
D[i].a--;
D[i].b += D[i].s->top();
D[i].s->pop();
}
ll x = D[i].s->top();D[i].s->pop();
ll y = D[i].s->top();D[i].s->pop();
D[i].s->push(x + c[i]);
D[i].s->push(y + c[i]);
D[i].b -= c[i];
D[p[i]] = D[p[i]] + D[i];
}
printf("%lld\n", D[0].get_min());
return 0;
}
컴파일 시 표준 에러 (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... |