This repository was archived by the owner on May 16, 2021. It is now read-only.
forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-tree-maximum-path-sum_1_AC.cpp
76 lines (65 loc) · 1.74 KB
/
binary-tree-maximum-path-sum_1_AC.cpp
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
64
65
66
67
68
69
70
71
72
73
74
75
76
// Recursion is fine, just don't repeat it too many times.
// Your stack is gonna blow.
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
#include <unordered_map>
using std::unordered_map;
class Solution {
public:
int maxPathSum(TreeNode* root) {
if (root == NULL) {
return 0;
}
oneSum(root);
twoSum(root);
return sum_two[root];
}
~Solution() {
}
private:
unordered_map<TreeNode *, int> sum_one, sum_two;
int twoSum(TreeNode *root) {
if (sum_one.find(root) == sum_one.end()) {
oneSum(root);
}
if (sum_two.find(root) != sum_two.end()) {
return sum_two[root];
}
int res = root->val;
if (root->left != NULL) {
res += max(0, sum_one[root->left]);
}
if (root->right != NULL) {
res += max(0, sum_one[root->right]);
}
if (root->left != NULL) {
res = max(res, twoSum(root->left));
}
if (root->right != NULL) {
res = max(res, twoSum(root->right));
}
sum_two[root] = res;
return sum_two[root];
}
int oneSum(TreeNode *root) {
if (sum_one.find(root) != sum_one.end()) {
return sum_one[root];
}
int s = 0;
if (root->left != NULL) {
s = max(s, oneSum(root->left));
}
if (root->right != NULL) {
s = max(s, oneSum(root->right));
}
sum_one[root] = root->val + s;
return sum_one[root];
}
};