# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
169980 | ZwariowanyMarcin | 구슬과 끈 (APIO14_beads) | C++14 | 6 ms | 5112 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair
#define ss(x) (int) x.size()
#define pb push_back
#define ll long long
#define cat(x) cerr << #x << " = " << x << endl
#define FOR(i, n) for(int i = 0; i < n; ++i)
using namespace std;
const int nax = 2e5 + 111;
const ll inf = 1e18;
int n;
int a, b, c;
vector <pair<int,int>> v[nax];
ll dp[nax][3];
void dfs(int u, int p, int cost) {
dp[u][0] = 0;
dp[u][1] = -inf;
ll sum = 0;
vector <ll> opt;
for(auto it : v[u])
if(it.fi != p) {
dfs(it.fi, u, it.se);
sum += dp[it.fi][2];
opt.pb(it.se + dp[it.fi][0] - dp[it.fi][2]);
}
sort(opt.begin(), opt.end());
reverse(opt.begin(), opt.end());
dp[u][0] = max(dp[u][0], sum);
if(ss(opt) > 1)
dp[u][0] = max(dp[u][0], sum + opt[0] + opt[1]);
if(ss(opt) > 0)
dp[u][1] = max(dp[u][1], sum + opt[0] + cost);
dp[u][2] = max(dp[u][0], dp[u][1]);
}
int main() {
scanf("%d", &n);
for(int i = 1; i < n; ++i) {
scanf("%d %d %d", &a, &b, &c);
v[a].pb(mp(b, c));
v[b].pb(mp(a, c));
}
dfs(1, 0, 0);
printf("%lld", dp[1][0]);
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... |