PAT Advanced 1151 LCA in a Binary Tree (30) [树的遍历,LCA算法]
题目
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.
题目分析
已知二叉树中序和前序序列,求每个测试用例两个节点的最近公共祖先节点
解题思路
二叉树中序+前序唯一确定一棵二叉树,利用(前序第一个节点root在中序中将中序分为左子树和右子树)查找LCA
- u,v在root两边,则root为u,v最近公共祖先节点
- u,v都在root左边,则最近公共祖先在root左子树,递归查找
- u,v都在root右边,则最近公共祖先在root右子树,递归查找
- u==root,则u是v的最近公共祖先节点
- v==root,则v是u的最近公共祖先节点
Code
#include <iostream>
#include <map>
#include <vector>
using namespace std;
vector<int> pre,in;
map<int,int> pos;
void lca(int inL,int inR,int preL,int u,int v) {
if(inL>inR)return;
int rin=pos[pre[preL]], uin=pos[u], vin=pos[v];
if((uin<rin&&vin>rin)||(vin<rin&&uin>rin)) {
printf("LCA of %d and %d is %d.\n",u,v,in[rin]);
} else if(uin<rin&&vin<rin) { //u,v在左子树
lca(inL, rin-1, preL+1,u,v);
} else if(uin>rin&&vin>rin) { //u,v在右子树
lca(rin+1, inR, preL+(rin-inL)+1,u,v);
} else if(uin==rin) { //u是v lca
printf("%d is an ancestor of %d.\n",u,v);
} else if(vin==rin) { //v是u lca
printf("%d is an ancestor of %d.\n",v,u);
}
}
int main(int argc,char * argv[]) {
int m,n,u,v;
scanf("%d %d",&m,&n);
pre.resize(n+1);
in.resize(n+1);
for(int i=1; i<=n; i++) {
scanf("%d",&in[i]);
pos[in[i]]=i;
}
for(int i=1; i<=n; i++) {
scanf("%d",&pre[i]);
}
for(int i=0; i<m; i++) {
scanf("%d %d",&u,&v);
if(pos[u]==0&&pos[v]==0) { //都没找到
printf("ERROR: %d and %d are not found.\n",u,v);
} else if(pos[u]==0||pos[v]==0) {
printf("ERROR: %d is not found.\n",pos[u]==0?u:v);
} else {
lca(1,n,1,u,v);
}
}
return 0;
}
PAT Advanced 1151 LCA in a Binary Tree (30) [树的遍历,LCA算法]的更多相关文章
- PAT Advanced 1102 Invert a Binary Tree (25) [树的遍历]
题目 The following is from Max Howell @twitter: Google: 90% of our engineers use the sofware you wrote ...
- PAT Advanced 1135 Is It A Red-Black Tree (30) [红⿊树]
题目 There is a kind of balanced binary search tree named red-black tree in the data structure. It has ...
- PAT Advanced 1115 Counting Nodes in a BST (30) [⼆叉树的遍历,BFS,DFS]
题目 A Binary Search Tree (BST) is recursively defined as a binary tree which has the following proper ...
- PAT (Advanced Level) 1102. Invert a Binary Tree (25)
简单题. #include<cstdio> #include<cstring> #include<cmath> #include<vector> #in ...
- PAT Advanced 1090 Highest Price in Supply Chain (25) [树的遍历]
题目 A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)–everyone inv ...
- PAT_A1151#LCA in a Binary Tree
Source: PAT A1151 LCA in a Binary Tree (30 分) Description: The lowest common ancestor (LCA) of two n ...
- PAT 1151 LCA in a Binary Tree[难][二叉树]
1151 LCA in a Binary Tree (30 分) The lowest common ancestor (LCA) of two nodes U and V in a tree is ...
- PAT-1151(LCA in a Binary Tree)+最近公共祖先+二叉树的中序遍历和前序遍历
LCA in a Binary Tree PAT-1151 本题的困难在于如何在中序遍历和前序遍历已知的情况下找出两个结点的最近公共祖先. 可以利用据中序遍历和前序遍历构建树的思路,判断两个结点在根节 ...
- 【PAT 甲级】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 bo ...
随机推荐
- HihoCoder第二周与POJ3630:Trie树的建立
这又是两道一样的题,都是建立trie树的过程. HihoCoder第二周: 这里其实逻辑都很简单,主要在于数据结构struct的使用. #include <iostream> #inclu ...
- 编程题目:输入一个链表,输出该链表中倒数第k个节点
两种方法 1.在链表的初始化数据中加入 num 数据, 每添加一个节点,num加1,每删除一个节点,num减1 查找倒数第k个元素,即 指向第一个节点的指针向后移动 num - k 步. 2.使用两个 ...
- C++面试常见问题——16函数模板的使用
函数模板的使用 函数模板在使用之前必须在外部对函数模板进行初始化. 函数模板的实例化包含两中 1.隐式实例化: template <class T> //没有: T Fun(T a,T b ...
- 清北学堂例题 LUOGU2523【HAOI2011】problem c
题目描述 给n个人安排座位,先给每个人一个1~n的编号,设第i个人的编号为ai(不同人的编号可以相同),接着从第一个人开始,大家依次入座,第i个人来了以后尝试坐到ai,如果ai被占据了,就尝试ai+1 ...
- Metasploit学习笔记——Web应用渗透技术
1.命令注入实例分析 对定V公司网站博客系统扫描可以发现,它们安装了zingiri-web-shop这个含有命令注入漏洞的插件,到www.exploit-db.com搜索,可以看到2011.11.13 ...
- Arrays类常用方法
Arrays类 3.1 概述 java.util.Arrays 此类包含用来操作数组的各种方法,比如排序和搜索等.其所有方法均为静态方法. 3.2 操作数组的方法 1.将参数数组变成字符串 publi ...
- P1002 写出这个数(Basic Level)
转跳点:
- POJ1088:滑雪
滑雪 Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 82112 Accepted: 30706 Description ...
- Result Maps collection already contains value for com.xxx.x.dao.xxxMapper.Bas
springboot启动时候,报错如下: Result Maps collection already contains value for com.xxx.xx.dao.xxxxxMapper.Ba ...
- Laravel框架的学习
用xampp环境 1.Composer的安装 http://www.phpcomposer.com/ 下载Composer的安装exe php.ini中extension_dir.browscap路径 ...