Time limit: 1.0s , Memory limit: 256M , Points: 1 (partial)
It's already 22:30 now, and it's time for Alice to go to bed. To ensure her sleeping quality, Alice decides to turn all the lights in her bedroom off.
There are lights, numbered from
to
, arranged in a row in Alice's bedroom. Each time Alice can select an integer i and turn all the lights numbered from
to
(both inclusive) off, where
is a predefined positive integer. Note that each time the value of
must be the same.
Given the initial status of all the lights, please help Alice determine the smallest possible so that she can turn all the lights off within
times.
Input
- The first line contains two integers
and
.
- The second line contains an array
representing the initial status of the lights. If
, the
light is initially on; if
, the
light is initially off. It is guaranteed that there is at least one
in the array.
Output
- Output a line containing one integer, indicating the smallest possible
.
Sample
Sample Input 1
3 1
0 1 0
Sample Output 1
1
Sample Input 2
7 4
0 1 0 1 1 1 1
Sample Output 2
2
Notes
In the second test,
For , The operation can be perfomed by choosing following intervals
- Total operations:
.
For , The operation can be perfomed by choosing following intervals
- Total operations:
.
Therefore, answer is .
Comments