-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeetCode2265.cpp
More file actions
33 lines (33 loc) · 849 Bytes
/
LeetCode2265.cpp
File metadata and controls
33 lines (33 loc) · 849 Bytes
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
/**
* 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) {}
* };
*/
class Solution
{
public:
pair<int, int> dfs(TreeNode *node, int &ans)
{
if (node == nullptr)
return {0, 0};
pair<int, int> left = dfs(node->left, ans);
pair<int, int> right = dfs(node->right, ans);
int sum = node->val + left.first + right.first;
int cnt = 1 + left.second + right.second;
if (sum / cnt == node->val)
ans++;
return {sum, cnt};
}
int averageOfSubtree(TreeNode *root)
{
int ans = 0;
dfs(root, ans);
return ans;
}
};