- 注册
- 2002-02-21
- 消息
- 829
- 荣誉分数
- 157
- 声望点数
- 203
Can anybody find the solution for the following program question? The language doesn't matter as long as you provide proper logic.
Thanks in advance!
Problem : Switch
Problem Description
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 integerK, 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.
Thanks in advance!
Problem : Switch
Problem Description
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 integerK, 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.