# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
31646 | cheater2k | Beads and wires (APIO14_beads) | C++14 | 289 ms | 24224 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 200010;
const int inf = 2e9 + 12345;
int n;
int f[N][2], g[N][2];
vector < pair<int,int> > G[N], ch[N];
int ans;
void dfs(int u, int p) {
for (auto edge: G[u]) if (edge.second != p) {
dfs(edge.second, u);
ch[u].push_back(edge);
}
f[u][1] = -inf;
f[u][0] = 0;
for (auto edge: ch[u]) {
f[u][0] += max(f[edge.second][0], f[edge.second][1] + edge.first);
}
for (auto edge: ch[u]) {
int mx = f[u][0];
mx -= max(f[edge.second][0], f[edge.second][1] + edge.first);
mx += (f[edge.second][0] + edge.first);
f[u][1] = max(f[u][1], mx);
}
}
void re_dfs(int u, int p) {
# | 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... |