A1580.[COCI-2016_2017-contest6]#5 Telefoni
提高+/省选-
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
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 j^th desk rings, which is at most D desks away from the i^th desk. In other words, it holds |j - i| ≤ 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 ≤ N ≤ 300 000) and D (1 ≤ D ≤ N).
The following line contains N numbers 0 or
- If the i^th number is 1, then the i^th desk from the left has a phone on it, otherwise the i^th desk is empty.
输出格式
The first and only line of output must contain the required minimal number of phones.
输入输出样例
输入#1
4 1 1 0 1 1
输出#1
1
输入#2
5 2 1 0 0 0 1
输出#2
1
输入#3
8 2 1 1 0 0 1 0 0 1
输出#3
2
说明/提示
In test cases worth 40 points in total, it will hold 1 ≤ N ≤ 20.