PAT A 급 1004 Counting Leaves
3858 단어 데이터 구조
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
이 문 제 는 읽 기 가 매우 어렵다.나 는 오랫동안 이해 한 끝 에 나무 한 그루 가 층 마다 몇 개의 잎 노드 만 있 는 지 판단 하면 된다 는 것 을 알 게 되 었 다.제목 의 뜻 을 알 았 으 니 직접 dfs 를 했 으 면 좋 겠 습 니 다.이곳 의 사고방식 은 dfs 가 매번 노드 에 도착 하 는 층 수 를 기록 한 다음 에 현재 노드 의 하위 노드 가 있 는 지 없 는 지 에 따라 조작 하 는 것 이다.모든 노드 가 한 번 씩 옮 겨 다 니 면 답 도 나온다.
#include
#include
#include
#include
using namespace std;
vector<int>asd[102];
int ans[102];
int ma;
void dfs(int now,int cen){
int sum = 0;
for(int i=0;i1);
sum++;
}
if(sum==0)
ans[cen]++;
ma=max(cen,ma);
}
int main(){
int m,n;
cin>>n>>m;
for(int i=1;i<=m;i++){
int a,b,c;
cin>>a>>b;
for(int j=0;jcin>>c;
asd[a].push_back(c);
}
}
memset(ans,0,sizeof(ans));
dfs(1,1);
for(int i=1;iprintf("%d ",ans[i]);
cout<return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.