# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
135279 | wilwxk | 구슬과 끈 (APIO14_beads) | C++14 | 1090 ms | 5880 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXN=2e5+5;
const ll INF=1e18;
vector<pair<int, ll> > g[MAXN];
ll dp[MAXN][2];
int n;
ll respf;
void dfs(int cur, int p) {
dp[cur][0]=0; dp[cur][1]=0;
ll maior=-INF; //maior dp[viz][0]+peso- normal
for(auto aresta : g[cur]) {
int viz; ll peso; tie(viz, peso)=aresta;
if(viz==p) continue;
dfs(viz, cur);
ll val=max(dp[viz][1]+peso, dp[viz][0]);
dp[cur][1]+=val;
ll val2=dp[viz][0]+peso;
val2-=val;
if(val2>=maior) maior=val2;
}
if(cur!=p&&g[cur].size()==1) {
dp[cur][0]=0;
dp[cur][1]=-INF;
return;
}
//os dois estao com soma de max(dp(i, 1)+p, dp(i, 0))
dp[cur][0]=dp[cur][1];
dp[cur][1]+=maior;
}
int main() {
scanf("%d", &n);
for(int i=0; i<n-1; i++) {
int a, b, c; scanf("%d %d %d", &a, &b, &c);
g[a].push_back({b, c});
g[b].push_back({a, c});
}
int raiz=1; for(int i=1; i<=n; i++) if(g[i].size()!=1) raiz=i;
dfs(raiz, raiz);
respf=dp[raiz][0];
for(int i=1; i<=n; i++) dfs(i, i), respf=max(respf, dp[i][0]);
// for(int i=1; i<=n; i++) printf("%d: %lld %lld\n", i, dp[i][0], dp[i][1]);
if(n<=2) printf("0\n");
else printf("%lld\n", respf);
}
컴파일 시 표준 에러 (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... |