DWITE Online Computer Programming Contest, May 2010, Problem 5
This problem is from a Qualification Round of Google Code Jam.
The Snapper is a clever little device that, on one side, plugs its input plug into an output socket, and, on the other side, exposes an output socket for plugging in a light or other device.
When a Snapper is in the ON state and is receiving power from its input plug, then the device connected to its output socket is receiving power as well. When you snap your fingers – making a clicking sound – any Snapper receiving power at the time of the snap toggles between the ON and OFF states.
In hopes of destroying the universe by means of a singularity, I have purchased
Initially, all the Snappers are in the OFF state, so only the first one is receiving power from the socket, and the light is off. I snap my fingers once, which toggles the first Snapper into the ON state and gives power to the second one. I snap my fingers again, which toggles both Snappers and then promptly cuts power off from the second one, leaving it in the ON state, but with no power. I snap my fingers the third time, which toggles the first Snapper again and gives power to the second one. Now both Snappers are in the ON state, and if my light is plugged into the second Snapper it will be on.
I keep doing this for hours. Will the light be on or off after I have snapped my fingers
The input will contain 5 lines, integers
The output will contain 5 lines, either ON
or OFF
for each corresponding case.
Sample Input
1 0
1 1
4 0
4 47
30 100000000
Sample Output
OFF
ON
OFF
ON
OFF
Problem Resource: DWITE
Comments
Test cases are weak. This (https://dmoj.ca/submission/4688136) solution gets AC, but it's wrong.
The constraint of K in the problem statement says 1 <= K. In the sample test case, K is 0, though...