1004. Counting Leaves (30)

来源:互联网 发布:八上生物行知天下山东 编辑:程序博客网 时间:2024/04/29 01:27

http://www.patest.cn/contests/pat-a-practise/1004


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

#include <stdio.h>#include <stdlib.h>#define MAX 100#define true 1#define false 0#define bool inttypedef struct tnode{int num;struct tnode* next;}TNODE;typedef struct node{TNODE* linkp;TNODE* cur;}NODE;NODE nodeSet[MAX];struct {TNODE queue[MAX];int prior;int rear;}QUEUE;bool inQueue(TNODE t){if( (QUEUE.rear+1)%MAX == QUEUE.prior )return false;QUEUE.queue[QUEUE.rear] = t;QUEUE.rear = (QUEUE.rear + 1)%MAX;return true;}bool deQueue(TNODE *t){if( QUEUE.prior == QUEUE.rear )return false;*t = QUEUE.queue[QUEUE.prior];QUEUE.prior = (QUEUE.prior + 1)%MAX;return true;}bool isEmpty(){if(QUEUE.prior == QUEUE.rear)return true;else return false;}void init(){int i;for(i = 0;i < MAX;++i){nodeSet[i].linkp = NULL;nodeSet[i].cur = NULL;}QUEUE.prior = 0;QUEUE.rear = 0;}int main(){int N,M;int i,j;int numOfNode,numOfChild;int cnt = 0;bool first = true;TNODE *tmp;TNODE t;TNODE root = {01,NULL};TNODE flag = {-1,NULL};init();scanf("%d%d",&N,&M);for(i = 0;i < M;++i){scanf("%d%d",&numOfNode,&numOfChild);for(j = 0;j < numOfChild;++j){tmp = (TNODE*)malloc(sizeof(TNODE));scanf("%d",&(tmp->num));tmp->next = NULL;if(nodeSet[numOfNode].linkp == NULL){nodeSet[numOfNode].linkp = tmp;nodeSet[numOfNode].cur = tmp;}else{nodeSet[numOfNode].cur->next = tmp;nodeSet[numOfNode].cur = tmp;}}}for(i = 0;i < MAX;++i){nodeSet[i].cur = nodeSet[i].linkp;}inQueue(root);inQueue(flag);while(!isEmpty()){deQueue(&t);if(t.num == -1){if(!isEmpty()) inQueue(flag);if(first) first = false;else printf(" ");printf("%d",cnt);cnt = 0;continue;}if(nodeSet[t.num].linkp == NULL) cnt++;else{while(nodeSet[t.num].cur){inQueue(*nodeSet[t.num].cur);nodeSet[t.num].cur = nodeSet[t.num].cur->next;}}}for(i = 0;i < MAX;++i){nodeSet[i].cur = nodeSet[i].linkp;}for(i = 0;i < MAX;++i){while(nodeSet[i].cur){tmp = nodeSet[i].cur;nodeSet[i].cur = nodeSet[i].cur->next;free(tmp);}}return 0;}


0 0
原创粉丝点击