#ABC124D. [ABC124D] Handstand

[ABC124D] Handstand

Score : 400400 points

Problem Statement

NN people are arranged in a row from left to right.

You are given a string SS of length NN consisting of 0 and 1, and a positive integer KK.

The ii-th person from the left is standing on feet if the ii-th character of SS is 0, and standing on hands if that character is 1.

You will give the following direction at most KK times (possibly zero):

Direction: Choose integers ll and rr satisfying 1lrN1 \leq l \leq r \leq N, and flip the ll-th, (l+1)(l+1)-th, ......, and rr-th persons. That is, for each i=l,l+1,...,ri = l, l+1, ..., r, the ii-th person from the left now stands on hands if he/she was standing on feet, and stands on feet if he/she was standing on hands.

Find the maximum possible number of consecutive people standing on hands after at most KK directions.

Constraints

  • NN is an integer satisfying 1N1051 \leq N \leq 10^5.
  • KK is an integer satisfying 1K1051 \leq K \leq 10^5.
  • The length of the string SS is NN.
  • Each character of the string SS is 0 or 1.

Input

Input is given from Standard Input in the following format:

NN KK

SS

Output

Print the maximum possible number of consecutive people standing on hands after at most KK directions.

5 1
00010
4

We can have four consecutive people standing on hands, which is the maximum result, by giving the following direction:

  • Give the direction with l=1,r=3l = 1, r = 3, which flips the first, second and third persons from the left.
14 2
11101010110011
8
1 1
1
1

No directions are necessary.