[PAT A급] 1110 Complete Binary Tree(25점)(완전 두 갈래 나무)
2844 단어 ACM_두 갈래 나무PAT
Given a tree, you are supposed to tell if it is a complete binary tree.
Input Specification:
Each input file contains one test case. For each case, the first line gives a positive integer N (≤20) which is the total number of nodes in the tree -- and hence the nodes are numbered from 0 to N−1. Then N lines follow, each corresponds to a node, and gives the indices of the left and right children of the node. If the child does not exist, a
-
will be put at the position. Any pair of children are separated by a space. Output Specification:
For each case, print in one line
YES
and the index of the last node if the tree is a complete binary tree, or NO
and the index of the root if not. There must be exactly one space separating the word and the number. Sample Input 1:
9
7 8
- -
- -
- -
0 1
2 3
4 5
- -
- -
Sample Output 1:
YES 8
Sample Input 2:
8
- -
4 5
0 6
- -
2 3
- 7
- -
- -
Sample Output 2:
NO 1
제목: 두 갈래 나무의 n개 노드(0~n-1)의 좌우자 노드를 지정하여 완전한 두 갈래 나무인지 판단하고 만약에 YES와 마지막 노드의 하표를 출력한다.아니요, NO 및 루트 노드의 아래 첨자를 출력합니다.
사고방식: 만약에 완전히 두 갈래 나무라면 최대 노드의 하표는 n과 같아야 한다.그렇지 않으면 최대 노드의 아래 표식이 n보다 커야 한다
코드:
#include
using namespace std;
#define rep(i,a,n) for(int i=a;i=a;i--)
#define mem(a,n) memset(a,n,sizeof(a))
#define lowbit(i) ((i)&(-i))
typedef long long ll;
typedef unsigned long long ull;
const ll INF=0x3f3f3f3f;
const double eps = 1e-6;
const int N = 1e5+5;
struct Node {
int left,right;
} tree[N];
int ans_root,maxn=-1;
bool vis[N];
void dfs(int root,int id) {
if(id>maxn) {
maxn=id;///
ans_root=root;
}
if(tree[root].left!=-1) dfs(tree[root].left,id*2);
if(tree[root].right!=-1) dfs(tree[root].right,id*2+1);
}
int main() {
int n;
scanf("%d",&n);
for(int i=0; i>left>>right;
if(left=="-") {
tree[i].left=-1;
} else {
int tmp=stoi(left);
vis[tmp]=1;
tree[i].left=tmp;
}
if(right=="-") {
tree[i].right=-1;
} else {
int tmp=stoi(right);
vis[tmp]=1;
tree[i].right=tmp;
}
}
int root;
for(root=0; vis[root]!=0; root++);
dfs(root,1);
if(maxn==n) {
printf("YES %d",ans_root);
} else {
printf("NO %d",root);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[검지 Offer] 두 갈래 트리 재구성(전순 시퀀스와 중간 시퀀스, 두 갈래 트리 재구성)두 갈래 나무의 앞 순서와 중간 순서의 결과를 입력하십시오. 이 두 갈래 나무를 다시 만드십시오.입력한 앞 순서와 중간 순서의 결과에 중복된 숫자가 없다고 가정하십시오.예를 들어 앞 순서 반복 시퀀스 {1,2,4,7...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.