Menu Close

The Chef’s Binary Tree.

Chef has a binary tree. The binary tree consists of 1 or more nodes. Each node has a unique integer id. Each node has up to 2 children, which are identified by their ids, and each node is the child of at most 1 other node. A node X is considered to be an ancestor of node Y if node Y is a child of node X or if there is some node Z for which X is an ancestor of Z and Y is a child of Z. No node is an ancestor of itself. A special node called the root node is an ancestor of all other nodes.

Chef has forgotten which node of his tree is the root, and wants you to help him to figure it out. Unfortunately, Chef’s knowledge of the tree is incomplete. He does not remember the ids of the children of each node, but only remembers the sum of the ids of the children of each node.

Input
Input begins with an integer T, the number of test cases. Each test case begins with an integer N, the number of nodes in the tree. N lines follow with 2 integers each: the id of a node, and the sum of the ids of its children.
The second number will be 0 if the node has no children.

Output
For each test case, output on a line a space separated list of all possible values for the id of the root node in increasing order.
It is guaranteed that at least one such id exists for each test case.

testcase=int(input('Enter the number of test cases: '))
for i in range(0,testcase):
    n=int(input("Enter the n number: "))
    A=[]
    for j in range(0,n):
        temp=int(input('Enter the id node: '))
        temp1=int(input('Enter the sum of ids of the children: '))
        A.extend([temp,temp1])
    print(max(A))

Input_1:
Enter the number of test cases: 1
Enter the n number: 4
Enter the id node: 1
Enter the sum of ids of the children: 5
Enter the id node: 2
Enter the sum of ids of the children: 0
Enter the id node: 3
Enter the sum of ids of the children: 0
Enter the id node: 4
Enter the sum of ids of the children: 0
Output:
5

Input_2:
1
1
4 0
Output:
4

Morae Q!