# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
15854 | myungwoo | 구슬과 끈 (APIO14_beads) | C++14 | 1068 ms | 10112 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define MAXN 200005
#define pb push_back
#define sz(v) ((int)(v).size())
int N;
int D[MAXN], E[MAXN];
int up[MAXN], V[MAXN];
vector <int> con[MAXN], conv[MAXN];
void dfs(int n, int from)
{
vector <int> arr;
for (int i=sz(con[n]);i--;){
int t = con[n][i], v = conv[n][i];
if (t == from) continue;
up[t] = v; dfs(t, n);
arr.pb(t);
}
D[n] = E[n] = 0;
for (int t: arr){
V[t] = max(D[t], E[t]);
D[n] += V[t];
}
for (int t: arr){
E[n] = max(E[n], D[n] - V[t] + D[t] + up[t] + up[n]);
}
}
int main()
{
scanf("%d", &N);
for (int i=1;i<N;i++){
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
con[a].pb(b); conv[a].pb(c);
con[b].pb(a); conv[b].pb(c);
}
int ans = 0;
for (int i=1;i<=N;i++){
dfs(i, 0);
ans = max(ans, D[i]);
}
printf("%d\n", ans);
}
컴파일 시 표준 에러 (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... |