1151 LCA in a Binary Tree (30 점) [최소 공공 조상]
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants.
Given any two nodes in a binary tree, you are supposed to find their LCA.
Input Specification:
Each input file contains one test case. For each case, the first line gives two positive integers: M (≤ 1,000), the number of pairs of nodes to be tested; and N (≤ 10,000), the number of keys in the binary tree, respectively. In each of the following two lines, N distinct integers are given as the inorder and preorder traversal sequences of the binary tree, respectively. It is guaranteed that the binary tree can be uniquely determined by the input sequences. Then M lines follow, each contains a pair of integer keys U and V. All the keys are in the range of int.
Output Specification:
For each given pair of U and V, print in a line
LCA of U and V is A.
if the LCA is found and A
is the key. But if A
is one of U and V, print X is an ancestor of Y.
where X
is A
and Y
is the other node. If U or V is not found in the binary tree, print in a line ERROR: U is not found.
or ERROR: V is not found.
or ERROR: U and V are not found.
. Sample Input:
6 8
7 2 3 4 6 5 1 8
5 3 7 2 6 4 8 1
2 6
8 1
7 9
12 -3
0 8
99 99
Sample Output:
LCA of 2 and 6 is 3.
8 is an ancestor of 1.
ERROR: 9 is not found.
ERROR: 12 and -3 are not found.
ERROR: 0 is not found.
ERROR: 99 and 99 are not found.
제목: 가장 작은 공공 조상 을 찾 아 존재 하지 않 는 노드 출력 은 존재 하지 않 는 다.
문제 풀이 방향: 문 제 를 갑 급 문제 1143 으로 바 꿀 수 있다.우 리 는 두 갈래 로 나 무 를 수색 하 는 공공 조상 이 중간 에 있다 는 것 을 알 고 있 기 때문에 두 갈래 로 나 무 를 수색 하 는 것 은 바로 아래 표 로 처리 하 는 것 이다.이 진 트 리 의 중간 순 서 는 작은 것 에서 큰 것 으로 정렬 되 어 있 기 때문에 우 리 는 이 진 트 리 의 아래 표 시 를 1 부터 n 으로 표시 한 다음 에 pre 도 아래 표 시 를 합 니 다. 아래 표 시 를 이렇게 처리 하면 기본적으로 1143 에 따라 할 수 있 습 니 다. 구체 적 인 것 은 코드 를 볼 수 있 습 니 다.(그런데 여 기 는 29 점 밖 에 안 돼 요. 아직 1 점 이 모자 라 요. 세 번 째 테스트 지점 에서 오류 가 발생 했 어 요. 본 친구 가 지적 해 줬 으 면 좋 겠 어 요)
#include
#include
#include
#include
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PAT A 1049. Counting Ones (30)제목 The task is simple: given any positive integer N, you are supposed to count the total number of 1's in the decimal fo...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.