제출 #135055

#제출 시각아이디문제언어결과실행 시간메모리
135055wilwxkBeads and wires (APIO14_beads)C++14
0 / 100
6 ms4984 KiB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

const int MAXN=2e5+5;
const ll INF=1e18;
vector<pair<int, int> > g[MAXN];
ll dp[MAXN][2];
int n;

void dfs(int cur, int p) {
	dp[cur][0]=0; dp[cur][1]=0;

	ll maior=-INF, maior2=-INF; //maior dp[viz][0]+peso- normal
	ll soma=0;
	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) maior2=maior, maior=val2;
		else if(val2>maior2) maior2=val2;
	
		soma+=dp[viz][0];
	}

	if(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;
	dp[cur][0]+=(maior+maior2);
	dp[cur][0]=max(dp[cur][0], soma);
}

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});
	}

	dfs(1, 1);
	// for(int i=1; i<=n; i++) printf("%d: %lld %lld\n", i, dp[i][0], dp[i][1]);

	printf("%lld\n", dp[1][0]);
}

컴파일 시 표준 에러 (stderr) 메시지

beads.cpp: In function 'int main()':
beads.cpp:46:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
beads.cpp:48:21: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   int a, b, c; scanf("%d %d %d", &a, &b, &c);
                ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...