-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0333_largestBSTSubtree.cc
59 lines (53 loc) · 1.1 KB
/
Problem_0333_largestBSTSubtree.cc
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
#include <algorithm>
using namespace std;
struct TreeNode
{
int val;
TreeNode* left;
TreeNode* right;
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
};
// 树型dp
class Solution
{
private:
class Info
{
public:
int max;
int min;
bool isBst;
int maxBstSize;
Info(int a, int b, bool c, int d)
{
max = a;
min = b;
isBst = c;
maxBstSize = d;
}
};
Info f(TreeNode* x)
{
if (x == nullptr)
{
return Info(INT32_MIN, INT32_MAX, true, 0);
}
Info left = f(x->left);
Info right = f(x->right);
int max = std::max({x->val, left.max, right.max});
int min = std::min({x->val, left.min, right.min});
bool isBst = left.isBst && right.isBst && left.max < x->val && x->val < right.min;
int maxBstSize = 0;
if (isBst)
{
maxBstSize = left.maxBstSize + right.maxBstSize + 1;
}
else
{
maxBstSize = std::max(left.maxBstSize, right.maxBstSize);
}
return Info(max, min, isBst, maxBstSize);
}
public:
int largestBSTSubtree(TreeNode* root) { return f(root).maxBstSize; }
};