#Lutece0214. Lights
Lights
Migrated from Lutece 214 Lights
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Bessie and the cows were playing games in the barn, but the power was reset and the lights were all turned off. Help the cows get all the lights back on so they can resume their games.
The () lights conveniently numbered and their switches are arranged in a complex network with () clever connection between pairs of lights (see below).
Each light has a switch that, when toggled, causes that light -- and all of the lights that are connected to it -- to change their states (from on to off, or off to on).
Find the minimum number of switches that need to be toggled in order to turn all the lights back on.
It's guaranteed that there is at least one way to toggle the switches so all lights are back on.
Input
Line : Two space-separated integers: and .
Lines : Each line contains two space-separated integers representing two lights that are connected. No pair will be repeated.
Output
Line : A single integer representing the minimum number of switches that need to be flipped in order to turn on all the lights.
Samples
5 6
1 2
1 3
4 2
3 4
2 5
5 3
3
Resources
USACO Contest Nov.2009