1151 LCA in a Binary Tree (30 점) [최소 공공 조상]

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
using namespace std;

mapmapp;

int main(void)
{
	int m,n;
	int in[10010];
	scanf("%d%d",&m,&n);
	vectorinvalue(n+1),prevalue(n+1),pre(n+1);
	for(int i=1;i<=n;i++)
	{
		scanf("%d",&invalue[i]);
		in[invalue[i]]=i;
	}
	for(int i=1;i<=n;i++)
	{
		scanf("%d",&prevalue[i]);
		mapp[prevalue[i]]=true;
		pre[i]=in[prevalue[i]];
	}
	int a;
	for(int i=0;i=u1&&a<=v1||a>=v1&&a<=u1) break;
		}
		if(mapp[u]==false&&mapp[v]==false)
		printf("ERROR: %d and %d are not found.
",u,v); else if(mapp[u]==true&&mapp[v]==false) printf("ERROR: %d is not found.
",v); else if(mapp[u]==false&&mapp[v]==true) printf("ERROR: %d is not found.
",u); else if(a==u1||a==v1) printf("%d is an ancestor of %d.
",invalue[a],a==u1?v:u); else printf("LCA of %d and %d is %d.
",u,v,invalue[a]); } return 0; }

좋은 웹페이지 즐겨찾기