I encountered a problem from 2011 Canadian Computing Competition (senior division question no 5), and I have no clue how to solve it. Here is the question:
You are walking by a row of K (4 ≤ K ≤ 25) lights, some of which are on and some of which are off. In this initial configuration, there is no consecutive sequence of four lights that are on. Whenever four or more consecutive lights are on, the lights in that consecutive block will turn off. You can only turn on lights that are off. What is the minimum number of lights you need to turn on in order to end up with all K lights off?
Input Description The first line of input will consist of the integer K, indicating the number of lights. Each of the next K lines will have either the integer 0 (to represent a light that is off) or the integer 1 (to represent a light that is on).
Output Specification Your program should output the minimum number of lights that must be turned on in order to have all K lights be off.
Sample Input 1 5 1 1 0 1 1
Output for Sample Input 1 1
Explanation of Sample 1 Notice that turning on the third light will create five consecutive lights that are on, which will in turn cause all of these five lights to be off. Note: At least 30% of the test cases will have K ≤ 10.
I don't know which type of algorithm I should use to solve this problem, since there seem to be too many possibilities. Any help will be appreciated, and I understand python, c++ and java.