

In this given ‘BINARY_TREE’, we can make two possible partitions:
1. The first one is with sums 2 and 4.
2. The second one is with sums 3 and 3.
The second partition divides the given tree into an equal sum partition tree, so we return “True”.
The first line of input contains an integer 'T' representing the number of test cases. Then the test cases follow.
The next line of each test case contains elements in the level order form. The line consists of values of nodes separated by a single space. In case a node is null, we take -1 in its place.
The next line of each test case contains one integer ‘K’ representing that the houses that are still not vaccinated are at a ‘K’ distance from the last houses in the city.
For example, the input for the tree depicted in the below image would be :

4
2 6
1 3 5 7
-1 -1 -1 -1 -1 -1
Level 1 :
The root node of the tree is 4
Level 2 :
Left child of 4 = 2
Right child of 4 = 6
Level 3 :
Left child of 2 = 1
Right child of 2 = 3
Left child of 6 = 5
Right child of 6 = 7
Level 4 :
Left child of 1 = null (-1)
Right child of 1 = null (-1)
Left child of 3 = null (-1)
Right child of 3 = null (-1)
Left child of 5 = null (-1)
Right child of 5 = null (-1)
Left child of 7 = null (-1)
Right child of 7 = null (-1)
The first not-null node(of the previous level) is treated as the parent of the first two nodes of the current level. The second not-null node (of the previous level) is treated as the parent node for the next two nodes of the current level and so on.
The input ends when all nodes at the last level are null(-1).
The above format was just to provide clarity on how the input is formed for a given tree.
The sequence will be put together in a single line separated by a single space. Hence, for the above-depicted tree, the input will be given as:
4 2 6 1 3 5 7 -1 -1 -1 -1 -1 -1
For each test case, return “True” if we can partition the given ‘BINARY_TREE’ into two trees with equal sum values else return “False”.
Print the output of each test case in a separate line.
1 <= ‘T’ <= 10
1 <= ‘DATA’ <= 10^5
Time Limit: 1 second
As we know we can remove exactly on edge from the given binary tree. So first, we calculate the total sum of all nodes of the ‘BINARY_TREE’. If the sum is odd, that means we cannot divide the ‘BINARY_TREE’ into two trees with equal sum values, so we return “false”. Else we traverse the tree and at every node, we check if the sum of the subtree is equal to the total sum of all nodes by 2. If it is true, then we return true else we repeat this for another subtree.
Here is the algorithm:
sumOfSubTreeHelper(‘ROOT’)
First, we calculate the total sum of every node of the ‘BINARY_TREE’. Then we traverse the ‘BINARY_TREE’ again and at every node, except the root node, we check if the current sum of the current subtree is equal to the total sum of the ‘BINARY_TREE’ by 2.
Here is the algorithm: