3467. Telefoni

单点时限: 1.0 sec

内存限制: 256 MB

There are $N$ desks in a room, placed from left to right, one next to each other. Some desks have phones on them, whereas some desks are empty. All phones are broken, so the phone on the ith desk will ring if the phone at jth desk rings, which is at most $D$ desks away from the $i$th desk. In other words, it holds $|j - i| \le D$. The first and the last desk will always have a phone on them. In the beginning the leftmost phone rings. What is the minimal amount of new phones to be placed on the desks so that the last phone rings?

输入格式

The first line of input contains two positive integers, $N$ ($1 \le N \le 300~000$) and $D$ ($1 \le D \le N$).

The following line contains $N$ numbers $0$ or $1$. If the $i$th number is $1$, then the ith desk from the left has a phone on it, otherwise the ith desk is empty.

输出格式

The first and only line of output must contain the required minimal number of phones.

样例

Input
5 2
1 0 0 0 1
Output
1
Input
4 1
1 0 1 1
Output
1
Input
8 2
1 1 0 0 1 0 0 1
Output
2

提示

In test cases worth $40$ points in total, it will hold $1 \le N \le 20$.

43 人解决,46 人已尝试。

54 份提交通过,共有 121 份提交。

3.3 EMB 奖励。

创建: 6 年,4 月前.

修改: 6 年,4 月前.

最后提交: 2 年前.

来源: COCI 2017

题目标签