1004 Counting Leaves (30 分) 输出树每层的叶子节点数

ゝ一纸荒年。 2021-10-30 00:42 348阅读 0赞

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

Input Specification:

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:

  1. 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.

The input ends with N being 0. That case must NOT be processed.

Output Specification:

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:

  1. 2 1
  2. 01 1 02

Sample Output:

  1. 0 1

题意:输出树每层的叶子节点数

一开始看题有01,02还以为要map映射,后来看了柳神的博客发现直接%d就可以了,瞬间简单了~

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <string>
  4. #include <map>
  5. #include <vector>
  6. #include <queue>
  7. #include <math.h>
  8. #include <algorithm>
  9. #include <iostream>
  10. #define INF 0x3f3f3f3f
  11. using namespace std;
  12. vector<int> v[1005];
  13. int l[1005],maxl;
  14. void dfs(int root,int level)
  15. {
  16. if(v[root].size()==0)
  17. {
  18. maxl=max(maxl,level);
  19. l[level]++;
  20. return;
  21. }
  22. for(int i=0;i<v[root].size();i++)
  23. dfs(v[root][i],level+1);
  24. }
  25. int main()
  26. {
  27. int n,m,i,j,id,k,x;
  28. scanf("%d%d",&n,&m);
  29. while(m--)
  30. {
  31. scanf("%d%d",&id,&k);
  32. for(i=0;i<k;i++)
  33. {
  34. scanf("%d",&x);
  35. v[id].push_back(x);
  36. }
  37. }
  38. memset(l,0,sizeof l);
  39. maxl=-1;
  40. dfs(1,0);
  41. for(i=0;i<=maxl;i++)
  42. {
  43. if(i)printf(" ");
  44. printf("%d",l[i]);
  45. }
  46. }

发表评论

表情:
评论列表 (有 0 条评论,348人围观)

还没有评论,来说两句吧...

相关阅读