ZOJ3965 给定一颗二叉树的两种DFS序列 输出一种可能的二叉树的结构。

考察树的递归性质,不要想的太复杂。

当前节点在两个串中后面的节点假如不同则能确认两个子树,如果相同则把下个点作当前点的一个儿子。如果子树中还有未连根的点则接到当前点下。son数组表示每个点的子树有多少个点。pos数组记录每个数在每个序列中的位置。dfs中p1,p2指向同一个数

lim1,lim2表示当前点子树可能最大的子树范围。

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cstdlib>
  4. #include<cstring>
  5. #include<vector>
  6.  
  7. using namespace std;
  8. #define maxn 110000
  9. int n,fa[maxn];
  10. int s1[maxn],s2[maxn];
  11. int pos1[maxn],pos2[maxn];
  12. int vis[maxn],son[maxn];
  13. void dfs(int p1,int p2,int lim1,int lim2)
  14. {
  15. //printf("%d %d %d %d\n:::::\n",p1,lim1,p2,lim2);
  16. //system("pause");
  17. int now=s1[p1];
  18. if(vis[now]) return;
  19. vis[now]=1;
  20. if(p1<=0||p1>n) return ;
  21. if(p2<=0||p2>n) return ;
  22. if(lim1<=0) return ;
  23. if(lim2<=0) return ;
  24. if(p1>lim1||p2>lim2) return;
  25. son[now]=1;
  26. if(lim1==p1||lim2==p2) return;
  27. int r1=lim1,r2=lim2;
  28. if(s1[p1+1]!=s2[p2+1]&&p1+1<=lim1&&p2+1<=lim2)
  29. {
  30. int len=0;
  31. if(!fa[s1[p1+1]])
  32. {
  33. fa[s1[p1+1]]=now;
  34. r1=pos1[s2[p2+1]]-1;
  35. len=r1-p1;
  36. dfs(p1+1, pos2[ s1[p1+1] ] , r1 ,pos2[ s1[p1+1] ]+len-1 );
  37. son[now]+=son[ s1 [p1+1] ];
  38. }
  39. if(!fa[s2[p2+1]])
  40. {
  41. fa[s2[p2+1]]=now;
  42. r2=pos2[s1[p1+1]]-1;
  43. len=r2-p2;
  44. dfs( pos1[s2[p2+1]] , p2+1, pos1[s2[p2+1]]+len-1, r2 );
  45. son[now]+=son[ s2 [p2+1] ];
  46. }
  47. }
  48. else if(s1[p1+1]==s2[p2+1]&&p1+1<=lim1&&p2+1<=lim2)
  49. {
  50. fa[ s1[p1+1] ] = now;
  51. dfs(p1+1,p2+1,lim1,lim2);
  52. son[now]+=son[ s1[p1+1] ];
  53. int nt=p1+son[s1[p1+1]]+1;
  54. if(son[now]<lim1-p1+1)
  55. {
  56. fa[s1[nt]]=now;
  57. dfs(nt,pos2[s1[nt]],lim1,lim2);
  58. son[now]+=son[s1[nt]];
  59. }
  60. }
  61. }
  62.  
  63. int main()
  64. {
  65. int cas;
  66. scanf("%d",&cas);
  67. while(cas--)
  68. {
  69. scanf("%d",&n);
  70. memset(fa,0,sizeof(fa));
  71. memset(vis,0,sizeof(vis));
  72. memset(son,0,sizeof(son));
  73. memset(s1,0,sizeof(s1));
  74. memset(s2,0,sizeof(s2));
  75. memset(pos1,0,sizeof(pos1));
  76. memset(pos2,0,sizeof(pos2));
  77. for(int i=1;i<=n;i++) scanf("%d",&s1[i]),pos1[s1[i]]=i;
  78. for(int i=1;i<=n;i++) scanf("%d",&s2[i]),pos2[s2[i]]=i;
  79. dfs(1,1,n,n);
  80. for(int i=1;i<n;i++) printf("%d ",fa[i]);
  81. printf("%d\n",fa[n]);
  82. }
  83. return 0;
  84. }

  

ZOJ3965 Binary Tree Restoring的更多相关文章

  1. ZOJ 3965 Binary Tree Restoring

    Binary Tree Restoring 思路: 递归 比较a序列和b序列中表示同一个子树的一段区间,不断递归 代码: #include<bits/stdc++.h> using nam ...

  2. zoj 3965 Binary Tree Restoring(搜索)

    Binary Tree Restoring Time Limit: 1 Second      Memory Limit: 65536 KB      Special Judge Given two ...

  3. 2017浙江省赛 H - Binary Tree Restoring ZOJ - 3965

    地址:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3965 题目: iven two depth-first-search ...

  4. [数据结构]——二叉树(Binary Tree)、二叉搜索树(Binary Search Tree)及其衍生算法

    二叉树(Binary Tree)是最简单的树形数据结构,然而却十分精妙.其衍生出各种算法,以致于占据了数据结构的半壁江山.STL中大名顶顶的关联容器--集合(set).映射(map)便是使用二叉树实现 ...

  5. Leetcode 笔记 110 - Balanced Binary Tree

    题目链接:Balanced Binary Tree | LeetCode OJ Given a binary tree, determine if it is height-balanced. For ...

  6. Leetcode, construct binary tree from inorder and post order traversal

    Sept. 13, 2015 Spent more than a few hours to work on the leetcode problem, and my favorite blogs ab ...

  7. [LeetCode] Find Leaves of Binary Tree 找二叉树的叶节点

    Given a binary tree, find all leaves and then remove those leaves. Then repeat the previous steps un ...

  8. [LeetCode] Verify Preorder Serialization of a Binary Tree 验证二叉树的先序序列化

    One way to serialize a binary tree is to use pre-oder traversal. When we encounter a non-null node, ...

  9. [LeetCode] Binary Tree Vertical Order Traversal 二叉树的竖直遍历

    Given a binary tree, return the vertical order traversal of its nodes' values. (ie, from top to bott ...

随机推荐

  1. Volume 1. Maths - Misc

    113 - Power of Cryptography import java.math.BigInteger; import java.util.Scanner; public class Main ...

  2. Python面试快问快答,理论要的就是速度与精准,Python面试题No2

    今天的面试题 第1题:python2和python3的range(100)的区别 range()函数的含义 range函数是一个用来创建算数级数序列的通用函数,返回一个[start, start + ...

  3. 第十九节:Scrapy爬虫框架之Middleware文件详解

    # -*- coding: utf-8 -*- # 在这里定义蜘蛛中间件的模型# Define here the models for your spider middleware## See doc ...

  4. 第十七节:Scrapy爬虫框架之item.py文件以及spider中使用item

    Scrapy原理图: item位于原理图的最左边 item.py文件是报存爬取数据的容器,他使用的方法和字典很相似,但是相比字典item多了额外的保护机制,可以避免拼写错误或者定义错误. 1.创建it ...

  5. jquery动态绑定元素

    按照正常给静态元素绑定事件的写法换成给动态元素绑定事件会不管用,要用下面的方式: 简单说就是给要绑定元素的父元素绑定事件,参数中指明要绑定该父元素下面的哪个元素就行,这样就不管你这个元素是不是新增的, ...

  6. HDU-1083Courses,二分图模板题!

    Courses                                                                                             ...

  7. Mongo的Replica Sets (复制集)的配置全过程和心得体会

    http://blog.csdn.net/bloggongchang/article/details/7272403 一.MongoDB Replica Sets(副本集)简单的说就是有自动故障恢复功 ...

  8. 学习使用windows下类似iptables的防火墙软件

    项目地址:http://wipfw.sourceforge.net一.下载地址:http://sourceforge.net/projects/wipfw/files/安装:解压软件包后执行insta ...

  9. Webstrom打开太慢

    让webstrom将安装包目录屏蔽,settings-搜索file types-在ignore file and folders加入node_modules目录,操作方式如下:

  10. codevs——1019 集合论与图论

    1019 集合论与图论  时间限制: 1 s  空间限制: 128000 KB  题目等级 : 黄金 Gold 题解  查看运行结果     题目描述 Description 集合论与图论对于小松来说 ...