CF1279F.New Year and Handle Change
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
New Year is getting near. So it's time to change handles on codeforces. Mishka wants to change his handle but in such a way that people would not forget who he is.
To make it work, he only allowed to change letters case. More formally, during one handle change he can choose any segment of his handle [i;i+l−1] and apply tolower or toupper to all letters of his handle on this segment (more fomally, replace all uppercase letters with corresponding lowercase or vice versa). The length l is fixed for all changes.
Because it is not allowed to change codeforces handle too often, Mishka can perform at most k such operations. What is the minimum value of min(lower,upper) (where lower is the number of lowercase letters, and upper is the number of uppercase letters) can be obtained after optimal sequence of changes?
输入格式
The first line of the input contains three integers n,k and l ( 1≤n,k,l≤106,l≤n) — the length of Mishka's handle, the number of changes and the length of the segment.
The second line of the input contains one string s , consisting of n lowercase and uppercase Latin letters — Mishka's handle.
输出格式
Print one integer — the minimum value of min(lower,upper) after that Mishka change his handle at most k times in a way described in the problem statement.
输入输出样例
输入#1
7 1 4 PikMike
输出#1
0
输入#2
15 2 2 AaAaAAaaAAAAaaA
输出#2
2
输入#3
14 2 6 aBcdEFGHIJklMn
输出#3
0
输入#4
9 2 2 aAaAAAaaA
输出#4
1