AcWing 285. 没有上司的舞会
原题链接
简单
作者:
走不到也得走
,
2020-02-06 21:39:00
,
所有人可见
,
阅读 688
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
const int N=6060;
int f[N][2];
int h[N],e[N],ne[N],idx;
int happy[N];
bool has_fa[N];
int n;
void add(int a,int b)
{
e[idx]=b,ne[idx]=h[a],h[a]=idx++;
}
void dfs(int u)
{
f[u][1]=happy[u];
for(int i=h[u];~i;i=ne[i])
{
int j=e[i];
dfs(j);
f[u][1]+=f[j][0];
f[u][0]+=max(f[j][0],f[j][1]);
//printf("%d %d\n",f[u][1],f[u][0]);
}
}
int main()
{
cin>>n;
for(int i=1;i<=n;i++)
{
scanf("%d",&happy[i]);
}
memset(h,-1,sizeof h);
int a,b;
for(int i=1;i<=n-1;i++)
{
scanf("%d%d",&a,&b);
add(b,a);//注意有向边的方向
has_fa[a]=true;
}
int root=1;
while(has_fa[root])root++;
dfs(root);
printf("%d",max(f[root][0],f[root][1]));
return 0;
}