int helper(TreeNode* root, int res) {
if (root==NULL) {
return 0;
}
int ls = helper(root->left, res);
int rs = helper(root->right, res);
int max_single = max(max(ls, rs) + root->val, root->val);
int max_top = max(max_single, ls+rs+root->val);
res = max(max_single, max_top);
return res;
}
int maxPathSum(TreeNode* root) {
int res=INT_MIN;
int ans = helper(root, res);
return ans;
}