/**
 * struct TreeNode {
 *	int val;
 *	struct TreeNode *left;
 *	struct TreeNode *right;
 *	TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param pRoot TreeNode类 
     * @return bool布尔型
     */
    map<TreeNode*,int> hash;
    int depth(TreeNode* root)
    {
        if(root==nullptr)
            return 0;
        if(hash.find(root)!=hash.end())
            return hash[root];
        int ldepth=depth(root->left);
        int rdepth=depth(root->right);
        hash[root]=max(ldepth,rdepth)+1;
        return max(ldepth,rdepth)+1;
    }
    bool IsBalanced_Solution(TreeNode* pRoot) {
        int x=depth(pRoot);
        return IsBalancedTree(pRoot);
    }
    bool IsBalancedTree(TreeNode* pRoot)
    {
        if(pRoot==nullptr)
            return true;
        return abs(hash[pRoot->left]-hash[pRoot->right])<=1&&IsBalanced_Solution(pRoot->left)&&IsBalanced_Solution(pRoot->right);
    }
};