Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have been trying to solve the following problem for 2 days now,still I don't have any clue how to even start.I am looking for a hint on how to approach this problem(I am not looking for the solution).

PROBLEM:You are given a tree (a simple connected graph with no cycles).You have to remove as many edges from the tree as possible to obtain a forest with the condition that : Each connected component of the forest contains even number of vertices

Your task is to calculate the number of removed edges in such a forest.

Input: The first line of input contains two integers N and M. N is the number of vertices and M is the number of edges. 2 <= N <= 100. Next M lines contains two integers ui and vi which specifies an edge of the tree. (1-based index)

Output: Print a single integer which is the answer

Sample Input

10 9
2 1
3 1
4 3
5 2
6 1
7 2
8 6
9 8
10 8

Sample Output : 2

Explanation : On removing the edges (1, 3) and (1, 6), we can get the desired result.

share|improve this question
I have solved it now. – g4ur4v Aug 23 '12 at 6:05
Mind posting your solution for others? – David Harkness Aug 30 '12 at 0:59
For all the nodes count the number of children a node has(including itself) for eg. leaf nodes will have count 1 . Now total number of nodes with even number of count is equal to total number of edges to be removed.For the code noob-g4ur4v.blogspot.com/2012/08/interviewstreet-even-tree.html – g4ur4v Aug 30 '12 at 19:58
Is your graph directed? I solved it with counting eith directed graph and only 3 cases passing – gizmo Aug 31 '12 at 15:55
Not a directed graph.I used bfs to travel through the nodes. – g4ur4v Aug 31 '12 at 16:46

3 Answers

up vote 4 down vote accepted

I used bfs to travel through the nodes. First,maintain an array seperatly to store the total number of child nodes+1 . So, u can initially assign all the leaf nodes with value 1 in this array. Now start from the last node and count the number of children for each node .This will work in bottom to top manner and the array that stores the number of child nodes will help in run time to optimize the code. Once you get the array after getting the number of children nodes for all the nodes.Just counting the nodes with even number of nodes gives the answer.Note:I did not include root node in counting in final step.

share|improve this answer

My first inclination is to work up from the leaf nodes because you cannot cut their edges as that would leave single-vertex subtrees.

share|improve this answer

This is my solution. I didn't use bfs tree, just allocated another array for holding eachnode's and their children nodes total number.

import java.util.Scanner;
import java.util.Arrays;

public class Solution {

        /**
         * @param args
         */

        public static void main(String[] args) {
                // TODO Auto-generated method stub

                int tree[];
                int count[];

                Scanner scan = new Scanner(System.in);

                int N = scan.nextInt(); //points
                int M = scan.nextInt();

                tree = new int[N];
                count = new int[N];
                Arrays.fill(count, 1);

                for(int i=0;i<M;i++)
                {
                        int u1 = scan.nextInt();
                    int v1 = scan.nextInt();

                    tree[u1-1] = v1;

                    count[v1-1] += count[u1-1];

                    int root = tree[v1-1];

                    while(root!=0)
                    {
                        count[root-1] += count[u1-1];
                        root = tree[root-1];
                    }
                }

                System.out.println("");

            int counter = -1;
                for(int i=0;i<count.length;i++)
                {
                        if(count[i]%2==0)
                        {
                                counter++;
                        }

                }
                System.out.println(counter);

        }

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.