24. Longest Univalue Path

Given the root of a binary tree, return the length of the longest path, where each node in the path has the same value. This path may or may not pass through the root.

The length of the path between two nodes is represented by the number of edges between them.

Example 1:

Input: root = [5,4,5,1,1,5]
Output: 2

Example 2:

Input: root = [1,4,5,4,4,5]
Output: 2

Solution: (DFS / Postorder Traversal)

Approach: Similar to diameter

class Solution
{
public:
    int ans = 0;
    int findPath(TreeNode *root)
    {

        if (root == NULL)
        {
            return 0;
        }

        int x = findPath(root->left);
        int y = findPath(root->right);

        int left = 0;
        int right = 0;
        if (root->left && root->val == root->left->val)
        {
            left += x + 1;
        }

        if (root->right && root->val == root->right->val)
        {
            right += y + 1;
        }

        ans = max(ans, left + right);

        return max(left, right);
    }

    int longestUnivaluePath(TreeNode *root)
    {
        if (root == NULL)
        {
            return 0;
        }
        findPath(root);
        return ans;
    }
};

Last updated

Was this helpful?