比赛 20160323 评测结果 AAAAAAAAAA
题目名称 修剪花卉 最终得分 100
用户昵称 WAHT 运行时间 0.041 s
代码语言 C++ 内存使用 3.88 MiB
提交时间 2016-03-23 20:49:31
显示代码纯文本
#include<iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<algorithm>
#define ll long long
using namespace std;
const int maxn=200000;
struct my
{
	int y,next;
}e[maxn];
int len=0,linkk[maxn];
ll v[maxn];
void insert(int xx,int yy)
{
	e[++len].y=yy;
	e[len].next=linkk[xx],linkk[xx]=len;
}
int n;
ll ans,c=0;
bool vis[maxn];
ll dfs(int x)
{
	vis[x]=1;
	for(int i=linkk[x];i;i=e[i].next)
	{
		int to=e[i].y;
		if(vis[to])	continue;
		v[x]+=dfs(to);
	}
	ans=max(ans,v[x]);
	return max(v[x],c);
}
int main()
{
	freopen("makeup.in","r",stdin);
	freopen("makeup.out","w",stdout);
	cin>>n;
	for(int i=1;i<=n;i++)
		scanf("%lld",&v[i]);
	for(int i=1;i<n;i++)
	{
		int a,b;
		scanf("%d%d",&a,&b);
		insert(a,b);
		insert(b,a);
	}
	dfs(1);
	cout<<ans<<endl;
	return 0;
}