首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【Pat】甲级1004 - Counting Leaves(树 & bfs)

【Pat】甲级1004 - Counting Leaves(树 & bfs)

作者头像
FishWang
发布2025-08-26 14:25:52
发布2025-08-26 14:25:52
13200
代码可运行
举报
运行总次数:0
代码可运行

题目链接:点击打开题目


1004.Counting Leaves (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue 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 1 01 1 02 Sample Output 0 1


存树的时候用vector来存边,然后从根节点开始bfs遍历就行了。


代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include<cstdio>
#include<cstring>
#include<string>
#include<vector>
#include<algorithm>
#include<cmath>
#include<iostream>
#include<queue>
#include<stack>
using namespace std;
typedef long long LL;
#define CLR(a,b) memset(a,b,sizeof(a))
#define INF 0x3f3f3f3f
#define fi first
#define se second
vector<int> Node[105];
void bfs(int root)
{
    queue<pair<int,int> > Q;
    Q.push(make_pair(root,1));
    int cnt = 0;
    int pos = 1;
    while (!Q.empty())
    {
        if (pos != Q.front().se)        //下一层
        {
            cout << cnt << ' ';     //输出上一层的数量
            cnt = 0;
            pos++; 
        }
        if (Node[Q.front().fi].size() == 0)     //没有孩子,那么它为叶子 
            cnt++;
        for (int i = 0 ; i < Node[Q.front().fi].size() ; i++)       //搜索它的孩子 
            Q.push(make_pair(Node[Q.front().fi][i] , pos+1));
        Q.pop();        //最后把这个节点弹出队列 
    }
    cout << cnt << endl;        //输出最后一层的数量 
}
int main()
{
    int id;
    int in[105] = {-1};
    int n,m,k;
    cin >> n >> m;
    while (m--)
    {
        cin >> id >> k;
        if (in[id] == -1)
            in[id] = 0;
        while (k--)
        {
            int t;
            cin >> t;
            Node[id].push_back(t);
            if (in[t] == -1)
                in[t] = 0;
            in[t]++;
        }
    }
    int root;
    for (int i = 0 ; i <= 99 ; i++)
    {
        if (!in[i])     //入度为0
        {
            root = i;
            break;
        }
    }
    bfs(root);
    return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档