CF1575H.Holiday Wall Ornaments

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Winter holiday will be here soon. Mr. Chanek wants to decorate his house's wall with ornaments. The wall can be represented as a binary string aa of length nn . His favorite nephew has another binary string bb of length mm ( mnm \leq n ).

Mr. Chanek's nephew loves the non-negative integer kk . His nephew wants exactly kk occurrences of bb as substrings in aa .

However, Mr. Chanek does not know the value of kk . So, for each kk ( 0knm+10 \leq k \leq n - m + 1 ), find the minimum number of elements in aa that have to be changed such that there are exactly kk occurrences of bb in aa .

A string ss occurs exactly kk times in tt if there are exactly kk different pairs (p,q)(p,q) such that we can obtain ss by deleting pp characters from the beginning and qq characters from the end of tt .

输入格式

The first line contains two integers nn and mm ( 1mn5001 \leq m \leq n \leq 500 ) — size of the binary string aa and bb respectively.

The second line contains a binary string aa of length nn .

The third line contains a binary string bb of length mm .

输出格式

Output nm+2n - m + 2 integers — the (k+1)(k+1) -th integer denotes the minimal number of elements in aa that have to be changed so there are exactly kk occurrences of bb as a substring in aa .

输入输出样例

  • 输入#1

    9 3
    100101011
    101

    输出#1

    1 1 0 1 6 -1 -1 -1

说明/提示

For k=0k = 0 , to make the string aa have no occurrence of 101, you can do one character change as follows.

100101011 \rightarrow 100100011

For k=1k = 1 , you can also change a single character.

100101011 \rightarrow 100001011

For k=2k = 2 , no changes are needed.

首页