PAT-甲级-1004

来源:互联网 发布:嵌入式linux驱动开发 编辑:程序博客网 时间:2024/04/30 01:32

1004. Counting Leaves (30)

A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child.

Input

Each input file contains one test case. Each case starts with a line containing 0 < N < 100, the number of nodes in a tree, and M (< N), the number of non-leaf nodes. Then M lines follow, each in the format:

ID K ID[1] ID[2] ... ID[K]
where ID is a two-digit number representing a given non-leaf node, K is the number of its children, followed by a sequence of two-digit ID's of its children. For the sake of simplicity, let us fix the root ID to be 01.

Output

For each test case, you are supposed to count those family members who have no child for every seniority level starting from the root. The numbers must be printed in a line, separated by a space, and there must be no extra space at the end of each line.

The sample case represents a tree with only 2 nodes, where 01 is the root and 02 is its only child. Hence on the root 01 level, there is 0 leaf node; and on the next level, there is 1 leaf node. Then we should output "0 1" in a line.

Sample Input
2 101 1 02
Sample Output

0 1

【解析】
第一个给出的数字代表总共的结点数,第二个数字代表的是非叶子结点数。我们要统计的是每一层的叶子结点数有多少,这里可以用dfs和bfs都可以做。dfs的话,就是不断的向下搜索遇到叶子结点的时候该层数叶子结点加1,然后返回。bfs的话也差不多的就是不断的入队和出队。此处说明一下代码来自网络学习。

dfs

#include<iostream>#include<cstdio>#include<vector>using namespace std;vector<int>a[100];int b[100],maxdepth=-1;void dfs(int n,int depth){    if(a[n].size()==0)//判断该结点以下是不是空的    {    b[depth]++;//该层数的结点数+1    maxdepth=max(maxdepth,depth);//求最大的层数有多深    return;    }    for(int i=0;i<a[n].size();i++)    {        dfs(a[n][i],depth+1);//不断的往下搜索    }}int main(){    int n,m,k,i,j,dian,c;    scanf("%d%d",&n,&m);    for(i=0;i<m;i++)    {        scanf("%d%d",&dian,&k);//输入的是每个根结点包括子根结点        for(j=0;j<k;j++)        {            scanf("%d",&c);            a[dian].push_back(c);//把该子结点放入该根结点下面        }    }    dfs(1,0);    printf("%d",b[0]);    for(i=1;i<=maxdepth;i++)        printf(" %d",b[i]);    return 0;}
bfs

#include<iostream>#include<string>#include<vector>#include<queue>#include<cstdio>using namespace std;int level[100],a[100],maxlevel=-1;//level表示所在的层数,maxlevel表示最大的层数vector<int>v[100];void bfs(){    queue<int>q;    q.push(1);//先让根结点入队    level[1]=0;//根结点所在层数为0    while(!q.empty())    {        int index=q.front();//将队列中的结点的下标分批次的给index        q.pop();//弹出元素        maxlevel=max(level[index],maxlevel);        if(v[index].size()==0)//如果该结点下的元素为空则该层数的空结点数+1        {            a[level[index]]++;        }        for(int i=0;i<v[index].size();i++)        {            q.push(v[index][i]);            level[v[index][i]]=level[index]+1;        }    }}int main(){    int n,m,dian,b,i,p,j;    scanf("%d%d",&n,&m);    for(i=0;i<m;i++)    {        scanf("%d%d",&dian,&p);        for(j=0;j<p;j++)        {            scanf("%d",&b);            v[dian].push_back(b);        }    }    bfs();    printf("%d",a[0]);    for(i=1;i<=maxlevel;i++)        printf(" %d",a[i]);    return 0;}



0 0
原创粉丝点击