CF900E.Maximum Questions
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vasya wrote down two strings s of length n and t of length m consisting of small English letters 'a' and 'b'. What is more, he knows that string t has a form "abab...", namely there are letters 'a' on odd positions and letters 'b' on even positions.
Suddenly in the morning, Vasya found that somebody spoiled his string. Some letters of the string s were replaced by character '?'.
Let's call a sequence of positions i,i+1,...,i+m−1 as occurrence of string t in s , if 1<=i<=n−m+1 and t1=si,t2=si+1,...,tm=si+m−1 .
The boy defines the beauty of the string s as maximum number of disjoint occurrences of string t in s . Vasya can replace some letters '?' with 'a' or 'b' (letters on different positions can be replaced with different letter). Vasya wants to make some replacements in such a way that beauty of string s is maximum possible. From all such options, he wants to choose one with the minimum number of replacements. Find the number of replacements he should make.
输入格式
The first line contains a single integer n ( 1<=n<=105 ) — the length of s .
The second line contains the string s of length n . It contains small English letters 'a', 'b' and characters '?' only.
The third line contains a single integer m ( 1<=m<=105 ) — the length of t . The string t contains letters 'a' on odd positions and 'b' on even positions.
输出格式
Print the only integer — the minimum number of replacements Vasya has to perform to make the beauty of string s the maximum possible.
输入输出样例
输入#1
5 bb?a? 1
输出#1
2
输入#2
9 ab??ab??? 3
输出#2
2
说明/提示
In the first sample string t has a form 'a'. The only optimal option is to replace all characters '?' by 'a'.
In the second sample using two replacements we can make string equal to "aba?aba??". It is impossible to get more than two occurrences.