Kefa and Park

本文探讨了CodeForces上的一道题目“Kefa and Park”,该题要求计算从Kefa家到公园内各餐厅的路径中连续含有猫的顶点数不超过m的所有可能路径数量。文章提供了一个C++实现方案,利用深度优先搜索(DFS)遍历树形结构,通过递归计算符合条件的路径。
#include<bits/stdc++.h>
#define max 100005
using namespace std;
int cats[max];
vector<int>tree[max];
int visit[max];
int ans=0;
int n,m;
vector<int>::iterator it;
void init()
{
    ans=0;
    memset(visit,0,sizeof(visit));
    for(int i=0;i<n;i++)
        tree[i].clear();
    memset(cats,0,sizeof(cats));
}
void dfs(int node,int cat)
{
    //cout<<"zhuangtai"<<node<<" "<<cat<<tree[node].size()<<"  "<<endl;
    visit[node]=1;
    if(cat>m) return;
    else
    {
        //cout<<"jiancha"<<node<<"  "<<cat<<"  "<<tree[node].size()<<endl;

        //if(tree[node].size()==1&&node!=1)
        //{
            //cout<<"shenegui"<<node<<"  "<<cat<<endl;
            //ans++;
        //}
        bool ok=1;
        for(int i=0;i<tree[node].size();i++)
        {
            if(!visit[tree[node][i]])
            {
                ok=0;
                //visit[tree[node][i]]=1;
                if(cats[tree[node][i]])
                    dfs(tree[node][i],cat+cats[tree[node][i]]);
                else dfs(tree[node][i],0);
            }
            //ans++;
        }
        //for(it=tree[node].begin();it!=tree[node].end();it++){
          //  if(!visit[*it]){
            //    if
            //}
        //}
        ans+=ok;
    }
}
/*4 1
1 1 0 0
1 2
1 3
1 4



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


3 2
1 1 1
1 2
2 3
*/
int main()
{

    while(scanf("%d%d",&n,&m)!=EOF)
    {
        init();
        for(int i=1;i<=n;i++)
        {
            cin>>cats[i];
        }
        int a,b;
        //cout<<"ok"<<endl;
        for(int i=1;i<n;i++)
        {
            scanf("%d%d",&a,&b);
            tree[a].push_back(b);
            tree[b].push_back(a);
        }
        visit[1]=1;
        dfs(1,cats[1]);
        if(ans==0) cout<<0<<endl;
        else
            cout<<ans<<endl;
    }
    return 0;
}
View Code
B - Kefa and Park
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

Kefa decided to celebrate his first big salary by going to the restaurant.

He lives by an unusual park. The park is a rooted tree consisting of n vertices with the root at vertex 1. Vertex 1 also contains Kefa's house. Unfortunaely for our hero, the park also contains cats. Kefa has already found out what are the vertices with cats in them.

The leaf vertices of the park contain restaurants. Kefa wants to choose a restaurant where he will go, but unfortunately he is very afraid of cats, so there is no way he will go to the restaurant if the path from the restaurant to his house contains more than mconsecutive vertices with cats.

Your task is to help Kefa count the number of restaurants where he can go.

Input

The first line contains two integers, n and m (2 ≤ n ≤ 1051 ≤ m ≤ n) — the number of vertices of the tree and the maximum number of consecutive vertices with cats that is still ok for Kefa.

The second line contains n integers a1, a2, ..., an, where each ai either equals to 0 (then vertex i has no cat), or equals to 1 (then vertex i has a cat).

Next n - 1 lines contains the edges of the tree in the format "xiyi" (without the quotes) (1 ≤ xi, yi ≤ nxi ≠ yi), where xi and yi are the vertices of the tree, connected by an edge.

It is guaranteed that the given set of edges specifies a tree.

Output

A single integer — the number of distinct leaves of a tree the path to which from Kefa's home contains at most m consecutive vertices with cats.

Sample Input

Input
4 1
1 1 0 0
1 2
1 3
1 4
Output
2
Input
7 1
1 0 1 1 0 0 0
1 2
1 3
2 4
2 5
3 6
3 7
Output
2

Hint

Let us remind you that a tree is a connected graph on n vertices and n - 1 edge. A rooted tree is a tree with a special vertex called root. In a rooted tree among any two vertices connected by an edge, one vertex is a parent (the one closer to the root), and the other one is a child. A vertex is called a leaf, if it has no children.

Note to the first sample test:  The vertices containing cats are marked red. The restaurants are at vertices 2, 3, 4. Kefa can't go only to the restaurant located at vertex 2.

Note to the second sample test:  The restaurants are located at vertices 4, 5, 6, 7. Kefa can't go to restaurants 6, 7.

转载于:https://www.cnblogs.com/superxuezhazha/p/5277688.html

我现在要使用stata进行实证分析,实证模型如下gtfp1it=α+βkefa+γXit+μi+λt*ρp+ϵi,gtfp1为被解释变量,kefa为核心解释变量,政策冲击年份policy_year分别为2011年和2017年,代表第t年县级行政区i是否被纳入重点生态功能区,x为控制变量集,ϵ为随机干扰项;i表示市级行政区,t表示时间,p表示省级行政区,为提高因果推断的可靠性,本文控制了市级行政区固定效应id和省份—年份联合固定效应provinceid#year,将标准误聚类至市级行政区—年份层面,id_year,控制变量包括,1. 经济发展水平ed 2.产业结构is 3.创新能力creat 4.环境规制强度er 5.政府干预程度gover地6.财政压力pre 7.植被覆盖率plant 8.二氧化碳排放量co2,9,y ,现在我需要构建多时点双重差分模型,要求1.进行描述性统计并输出表格,2进行基准回归并输出表格,表格需要标注是否控制个体固定效应id和省份—年份联合固定效应provinceid#year 3进行创新cr中介机制分析并输出表格,进行环境规制er机制分析并输出表格 4,以2011和2017作为政策冲击时点进行多期did平行趋势检验,要求在进行均值计算后再进行平行趋势检验并输出表格 5,进行地区zone异质性分析,地区包括东中西,输出表格 6,进行安慰剂检验,要求根据kefa相关系数0.76输出结果图, 请确保所有命令完全契合我的模型和我的需求,要求命令必须真实可执行,需要调整的地方请做标注
最新发布
04-20
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值