[PAT A급] 1110 Complete Binary Tree(25점)(완전 두 갈래 나무)

제목 링크
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;
}

좋은 웹페이지 즐겨찾기