题目 对称二叉树

  
   题目描述

思路

  检查是否符合对称条件

    条件很简单——结构对称&&点权对称

    要做到点权对称其实也就顺便结构对称了

    于是条件可以简化为点权对称

    可以考虑并行搜索

 bool con(int l,int r) {
if(l == -&&r == -)
return ;
if(l == -||r == -)
return ;
if(w[l] == w[r])
if(check(l,r))
return ;
return ;
}
bool check(int x,int y) {
if(x == -&&y == -)
return ;
if(x == -||y == -)
return ;
if(w[x] != w[y])
return ;
int l = Root[x].l,l1 = Root[y].l;
int r = Root[y].r,r1 = Root[x].r;
if(con(l,r)&&con(l1,r1))
return ;
return ;
}

  信仰深搜

    就三个点

  

    你就装作上面还有一个点

  

 int dfs(int x) {
if(x == -) return ;
if(check(Root[x].l,Root[x].r)) {
int ans = Find(x) + ;
return ans;
}
int ans = max(dfs(Root[x].l),dfs(Root[x].r));
return ans;
}

  找答案

    加一指根节点

 int Find(int x) {
int q = ;
int l = Root[x].l;
int r = Root[x].r;
if(l != -) q += Find(l) + ;
if(r != -) q += Find(r) + ;
return q;
}

  另外
    读入时要记录这样几个玩意儿

  

     for(i = ;i <= n;i++)
scanf("%d",&w[i]);
for(i = ;i <= n;i++)
scanf("%d%d",&Root[i].l,&Root[i].r);

  code

 

 #include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define M 1000001
using namespace std;
int w[M];
struct N {
int l,r;
}Root[M];
bool con(int,int);
bool check(int,int);
//两个函数相互递归调用,并行搜索检查是否符合要求
int dfs(int);
//核心
int Find(int);
//其实就是找有多少个点
int main() {
int i,n;
scanf("%d",&n);
for(i = ;i <= n;i++)
scanf("%d",&w[i]);
for(i = ;i <= n;i++)
scanf("%d%d",&Root[i].l,&Root[i].r);
int ans = dfs();
printf("%d",ans);
return ;
} bool con(int l,int r) {
if(l == -&&r == -)
return ;
if(l == -||r == -)
return ;
if(w[l] == w[r])
if(check(l,r))
return ;
return ;
}
bool check(int x,int y) {
if(x == -&&y == -)
return ;
if(x == -||y == -)
return ;
if(w[x] != w[y])
return ;
int l = Root[x].l,l1 = Root[y].l;
int r = Root[y].r,r1 = Root[x].r;
if(con(l,r)&&con(l1,r1))
return ;
return ;
}
int Find(int x) {
int q = ;
int l = Root[x].l;
int r = Root[x].r;
if(l != -) q += Find(l) + ;
if(r != -) q += Find(r) + ;
return q;
}
int dfs(int x) {
if(x == -) return ;
if(check(Root[x].l,Root[x].r)) {
int ans = Find(x) + ;
return ans;
}
int ans = max(dfs(Root[x].l),dfs(Root[x].r));
return ans;
}

总结

    信仰很重要

    这代码很慢但不至于卡常,还有大量可优化地方,此处不再赘述

    它非常好理解,相信任何人都能写出比这更优秀的代码

2018NOIP普及T4---对称二叉树的更多相关文章

  1. P5018 [NOIP2018 普及组] 对称二叉树

    P5018 [NOIP2018 普及组] 对称二叉树 题目 P5018 思路 通过hash值来判断左右树是否相等 \(hl[i]\) 与 \(Hl[i]\) 是防止hash冲突, \(r\) 同理 注 ...

  2. [NOIP2018 PJ T4]对称二叉树

    题目大意:问一棵有根带权二叉树中最大的对称二叉树子树,对称二叉树为需满足将这棵树所有节点的左右子树交换,新树和原树对应位置的结构相同且点权相等. 题解:在对称二叉树中,对于深度相同的两个节点$u,v$ ...

  3. 2021.08.09 P5018 对称二叉树(树形结构)

    2021.08.09 P5018 对称二叉树(树形结构) [P5018 NOIP2018 普及组] 对称二叉树 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) 题意: 求一棵子树,关 ...

  4. [Noip 2018][标题统计 龙湖斗 摆渡车 对称二叉树]普及组题解

    啊喂,都已经9102年了,你还在想去年? 这里是一个Noip2018年PJ第二题打爆的OIer,错失省一 但经过了一年,我学到了很多,也有了很多朋友,水平也提高了很多,现在回看当时: 今年的Noip ...

  5. 【18NOIP普及组】对称二叉树(信息学奥赛一本通 1981)(洛谷 5018)

    [题目描述] 一棵有点权的有根树如果满足以下条件,则被轩轩称为对称二叉树: 1.二叉树: 2.将这棵树所有节点的左右子树交换,新树和原树对应位置的结构相同且点权相等. 下图中节点内的数字为权值,节点外 ...

  6. LeetCode【101. 对称二叉树】

    对称二叉树,就是左节点的左节点等于右节点的右节点,左节点的右节点等于右节点的左节点. 很自然就想到迭代与递归,可以创建一个新的函数,就是另一个函数不断的判断,返回在主函数. class Solutio ...

  7. 【leetcode-101】 对称二叉树

    101. 对称二叉树 (1过) 给定一个二叉树,检查它是否是镜像对称的. 例如,二叉树 [1,2,2,3,4,4,3] 是对称的. 1 / \ 2 2 / \ / \ 3 4 4 3 但是下面这个 [ ...

  8. 【洛谷P5018】对称二叉树

    题目大意:定义对称二叉树为每个节点的左右子树交换后与原二叉树仍同构的二叉树,求给定的二叉树的最大对称二叉子树的大小. 代码如下 #include <bits/stdc++.h> using ...

  9. 判断对称二叉树 python代码

    对称二叉树的含义非常容易理解,左右子树关于根节点对称,具体来讲,对于一颗对称二叉树的每一颗子树,以穿过根节点的直线为对称轴,左边子树的左节点=右边子树的右节点,左边子树的右节点=左边子树的左节点.所以 ...

随机推荐

  1. gcc的搜索路径,头文件和库

    1 抛开默认的搜索路径,自己指定搜索路径 第一,明确自己编写的代码所需要的头文件和库放在了哪里 第二,使用“-I”指定头文件的搜索路径,使用-rpath指定库的搜索路径 2 无论是本地编译还是交叉编译 ...

  2. OSS与文件系统的对比

    基本概念介绍_开发指南_对象存储 OSS-阿里云  https://help.aliyun.com/document_detail/31827.html 强一致性 Object 操作在 OSS 上具有 ...

  3. Ubuntu 16.04 + github page + hexo 搭建博客

    1. 安装nodejs:  sudo apt-get install nodejs-legacy 2.安装nvm :  wget -qO- https://raw.github.com/creatio ...

  4. Weex 和 React Native 的比较看这里

    写在前面 目前主流的应用大体分成三类:Native App, Web App, Hybrid App. Native App 特点: 性能好 完美的用户体验 开发成本高,无法跨平台 升级困难 (审核) ...

  5. android.content.ReceiverCallNotAllowedException: 解决方法

    一. android.content.ReceiverCallNotAllowedException: IntentReceiver components are not allowed to reg ...

  6. ANT-普通替换和正则替换

    ant提供了两个指令用于编译时修改文件,好处就不说了 ,就说说如何使用吧. replaceregexp 和 replace的区别就和java中String replace和replaceAll一样 , ...

  7. C的结构体函数

    #include<stdio.h> #include<string.h> struct Test { int age; ]; double score; }std1; //结构 ...

  8. Python 返回多个值+Lambda的使用

    def MaxMin(a,b): if(a>b): return a,b else: return b,a max,min=MaxMin(8,95) print "最大值为:" ...

  9. 一些常见的iOS面试问题,一眼就能看出 初级和高级工程师的区别

    前言 面试题中有一些一般性的问题,通常是会问到的.面试iOS应聘者时,切入点很重要,不同的切入点会导致不同的结果,没有找到合适的切入点也无法对应聘者有一个全面的了解. 所以下面的面试问题更多的是提供方 ...

  10. c++编程中处理char和wchar_t的好工具

    /* ttype.h sdragonx 2015-02-18 18:32:43 这个几个模版函数是为了处理ansi或unicode,使字符串值或者字符串函数能够在模版中使用 2018/7/26 23: ...