-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0113.path_sum_ii.cpp
52 lines (43 loc) · 1.15 KB
/
0113.path_sum_ii.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
#include <iostream>
#include <vector>
#include "leetcode.h"
using std::vector;
vector<vector<int>> path_sum(TreeNode *root, int t)
{
vector<vector<int>> res;
vector<int> path;
// path 用引用,因而需要手动 pop_back()
auto backtracking = [&res, &path, t](auto&& self, TreeNode *root, int c) {
if (root == nullptr) return ;
c += root->val;
path.push_back(root->val);
if (c == t && root->left == root->right) {
res.push_back(path);
path.pop_back();
c -= root->val;
return ;
}
self(self, root->left, c);
self(self, root->right, c);
path.pop_back();
c -= root->val;
};
backtracking(backtracking, root, 0);
return res;
}
int main () {
#ifdef LOCAL
freopen("0113.in", "r", stdin);
#endif
int n = 0, t = 0;
while (std::cin >> n >> t) {
vector<int> nums(n, 0);
for (int i = 0; i < n; ++i) {
std::cin >> nums[i];
}
TreeNode *root = build_tree(nums);
vector<vector<int>> res = path_sum(root, t);
std::cout << res << std::endl;
}
return 0;
}