码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 2783 [JLOI2012]树

时间:2018-02-19 21:15:38      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:post   oid   cst   string   sha   dfs   scan   jloi2012   head   

题解:set就好

#include<iostream>
#include<cstdio>
#include<map>
#include<cstring>
using namespace std;
const int maxn=100009;

int n,k;
int root;
int w[maxn];
int notroot[maxn];

int ans;

int cntedge;
int head[maxn];
int to[maxn<<1],nex[maxn<<1];
void Addedge(int x,int y){
	nex[++cntedge]=head[x];
	to[cntedge]=y;
	head[x]=cntedge;
}

map<int,int>ma;
void Dfs(int x,int fa,int sum){
	if(ma[sum-k]!=0)++ans;
	ma[sum]++;
	for(int i=head[x];i;i=nex[i]){
		if(to[i]==fa)continue;
		Dfs(to[i],x,sum+w[to[i]]);
	}
	ma[sum]--;
}

int main(){
	scanf("%d%d",&n,&k);
	for(int i=1;i<=n;++i)scanf("%d",&w[i]);
	for(int i=1;i<=n-1;++i){
		int x,y;
		scanf("%d%d",&x,&y);
		Addedge(x,y);
		notroot[y]=1;
	}
	for(int i=1;i<=n;++i)if(notroot[i]==0)root=i;
	
	ma[0]=1;
	Dfs(root,0,w[root]);
	
	printf("%d\n",ans);
	return 0;
}

  

BZOJ 2783 [JLOI2012]树

标签:post   oid   cst   string   sha   dfs   scan   jloi2012   head   

原文地址:https://www.cnblogs.com/zzyer/p/8454375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!