aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/leetcode/cpp/968.cpp
blob: c9e6b242ef790eab5835d6738c4031cf76926085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <cstddef>

struct TreeNode
{
    int val;
    TreeNode *left;
    TreeNode *right;
    TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};

#include <algorithm>

struct Result
{
    // root_camera >= root_monitored >= root_not_monitored
    int root_camera;
    int root_monitored;
    int root_not_monitored;
};

class Solution
{
public:
    Result dfs(TreeNode *root)
    {
        if (root->left == nullptr && root->right == nullptr)
        {
            return Result{1, 1, 0};
        }

        if (root->left == nullptr || root->right == nullptr)
        {
            TreeNode *child_node = root->left == nullptr ? root->right : root->left;
            Result child = dfs(child_node);

            int root_camera = 1 + child.root_not_monitored;
            int root_monitored = std::min({child.root_camera,
                                           root_camera});
            int root_not_monitored = std::min(child.root_monitored, root_monitored);

            return Result{
                root_camera, root_monitored, root_not_monitored};
        }

        Result left = dfs(root->left);
        Result right = dfs(root->right);

        int root_camera = 1 + left.root_not_monitored + right.root_not_monitored;
        int root_monitored = std::min({left.root_camera + right.root_monitored,
                                       left.root_monitored + right.root_camera,
                                       root_camera});
        int root_not_monitored = std::min({left.root_monitored + right.root_monitored, root_monitored});

        return Result{
            root_camera, root_monitored, root_not_monitored};
    }

    int minCameraCover(TreeNode *root)
    {
        auto result = dfs(root);
        return result.root_monitored;
    }
};