bzoj2783: [JLOI2012]树

Posted akcqhzdy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj2783: [JLOI2012]树相关的知识,希望对你有一定的参考价值。

乱搞可过。

注意是刚好等于S

#include<cstdio>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<algorithm>
#include<cmath>
#include<set>
using namespace std;

int n,S,c[110000];
struct node
{
    int x,y,next;
}a[110000];int len,last[110000];
void ins(int x,int y)
{
    len++;
    a[len].x=x;a[len].y=y;
    a[len].next=last[x];last[x]=len;
}

int sum;
multiset<int>ss;
void dfs(int x,int d)
{
    if(ss.find(d-S)!=ss.end())sum++;
    ss.insert(d);
        
    for(int k=last[x];k;k=a[k].next)
    {
        int y=a[k].y;
        dfs(y,d+c[y]);
    }
    ss.erase(d);
}
int main()
{
    freopen("a.in","r",stdin);
    freopen("a.out","w",stdout);
    scanf("%d%d",&n,&S);
    for(int i=1;i<=n;i++)scanf("%d",&c[i]);
    
    int x,y;
    len=0;memset(last,0,sizeof(last));
    for(int i=1;i<n;i++)
    {
        scanf("%d%d",&x,&y);
        ins(x,y);
    }
    ss.insert(0);dfs(1,c[1]);
    printf("%d
",sum);
    return 0;
}

 

以上是关于bzoj2783: [JLOI2012]树的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ2783[JLOI2012]树 DFS+栈+队列

bzoj2783: [JLOI2012]树

[bzoj2783][JLOI2012]树_树的遍历

bzoj2783 [JLOI2012]树

BZOJ 2783 树

bzoj2783 树