Codeforces 1324F. Maximum White Subtree(树形DP)

Description

You are given a tree consisting of n vertices. A tree is a connected undirected graph with n−1 edges. Each vertex v of this tree has a color assigned to it (av=1 if the vertex v is white and 0 if the vertex v is black).

You have to solve the following problem for each vertex v: what is the maximum difference between the number of white and the number of black vertices you can obtain if you choose some subtree of the given tree that contains the vertex v? The subtree of the tree is the connected subgraph of the given tree. More formally, if you choose the subtree that contains cntw white vertices and cntb black vertices, you have to maximize cntw−cntb.

Input

The first line of the input contains one integer n (2≤n≤2⋅105) — the number of vertices in the tree.

The second line of the input contains n integers a1,a2,…,an (0≤ai≤1), where ai is the color of the i-th vertex.

Each of the next n−1 lines describes an edge of the tree. Edge i is denoted by two integers ui and vi, the labels of vertices it connects (1≤ui,vi≤n,ui≠vi).

It is guaranteed that the given edges form a tree.

Output

Print n integers res1,res2,…,resn, where resi is the maximum possible difference between the number of white and black vertices in some subtree that contains the vertex i.

Examples
input

9
0 1 1 1 0 0 0 0 1
1 2
1 3
3 4
3 5
2 6
4 7
6 8
5 9

output

2 2 2 2 2 1 1 0 2

input

4
0 0 1 0
1 2
1 3
1 4

output

0 -1 1 -1

扫描二维码关注公众号,回复: 10929730 查看本文章
题目大意

给出一颗树以及每个节点的颜色,对每一个顶点i求包含顶点i的子树的最大差异(白色顶点减黑色顶点数量的最大值)

思路

两遍dfs,第一遍dfs自底向上求以当前节点为根节点的最大差异(白色顶点减黑色顶点数量的最大值)
(如果子树的白色顶点减黑色顶点数量的最大值大于0就加上)
第二遍dfs自顶向下求包含当前节点的子树的最大差异(白色顶点减黑色顶点数量的最大值)
(如果子节点为正,说明父节点的最大差异有这个子树的贡献,递归的时候减去)

#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int inf=0x3f3f3f3f;
const int maxn=2e5+5;
int a[maxn],v[maxn],head[maxn],cnt;
struct node{
	int to,next;
}edge[maxn<<1];
void add(int a,int b){
	edge[++cnt].to=b;
	edge[cnt].next=head[a];
	head[a]=cnt;
}
int dfs(int now,int f){
	v[now]=a[now]?1:-1;
	for(int i=head[now];i!=-1;i=edge[i].next){
		int to=edge[i].to;
		if(to==f)continue;
		v[now]+=max(0,dfs(to,now));
	}
	return v[now];
}
int dfs_(int now,int f,int fa_v){
	if(fa_v>0)v[now]+=fa_v;
	for(int i=head[now];i!=-1;i=edge[i].next){
		int to=edge[i].to;
		if(to==f)continue;
		dfs_(to,now,v[now]-max(0,v[to]));
	}
}
int main()
{
	int n;
	scanf("%d",&n);
	memset(head,-1,sizeof(head));
	for(int i=1;i<=n;++i)
		scanf("%d",&a[i]);
	for(int i=1;i<n;++i){
		int u,v;
		scanf("%d %d",&u,&v);
		add(u,v),add(v,u);
	}
	dfs(1,0);
	dfs_(1,0,0);
	for(int i=1;i<=n;++i){
		printf("%d%c",v[i],i==n?'\n':' ');
	}
	return 0;
}
发布了157 篇原创文章 · 获赞 56 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/qq_43984169/article/details/105603610