-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.cpp
46 lines (40 loc) · 1.16 KB
/
solution.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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
/**
* 229 / 229 test cases passed.
* Runtime: 8 ms
* Memory Usage: 10.8 MB
*/
class Solution {
public:
int targetSum_, ans_;
// <rest target sum, counting result>
unordered_map<int, int> store_;
int pathSum(TreeNode* root, int targetSum) {
if (!root) return 0;
targetSum_ = targetSum;
store_[0] = 1;
ans_ = 0;
dfs(root, root->val);
return ans_;
}
void dfs(TreeNode* root, int prefixSum) {
if (!root) return;
if (store_.count(prefixSum - targetSum_)) {
ans_ += store_[prefixSum - targetSum_];
}
store_[prefixSum] += 1;
if (root->left) dfs(root->left, prefixSum + root->left->val);
if (root->right) dfs(root->right, prefixSum + root->right->val);
store_[prefixSum] -= 1;
}
};