CF1409F.Subsequences of Length Two
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given two strings s and t consisting of lowercase Latin letters. The length of t is 2 (i.e. this string consists only of two characters).
In one move, you can choose any character of s and replace it with any lowercase Latin letter. More formally, you choose some i and replace si (the character at the position i ) with some character from 'a' to 'z'.
You want to do no more than k replacements in such a way that maximizes the number of occurrences of t in s as a subsequence.
Recall that a subsequence is a sequence that can be derived from the given sequence by deleting zero or more elements without changing the order of the remaining elements.
输入格式
The first line of the input contains two integers n and k ( 2≤n≤200 ; 0≤k≤n ) — the length of s and the maximum number of moves you can make. The second line of the input contains the string s consisting of n lowercase Latin letters. The third line of the input contains the string t consisting of two lowercase Latin letters.
输出格式
Print one integer — the maximum possible number of occurrences of t in s as a subsequence if you replace no more than k characters in s optimally.
输入输出样例
输入#1
4 2 bbaa ab
输出#1
3
输入#2
7 3 asddsaf sd
输出#2
10
输入#3
15 6 qwertyhgfdsazxc qa
输出#3
16
输入#4
7 2 abacaba aa
输出#4
15
说明/提示
In the first example, you can obtain the string "abab" replacing s1 with 'a' and s4 with 'b'. Then the answer is 3 .
In the second example, you can obtain the string "ssddsdd" and get the answer 10 .
In the fourth example, you can obtain the string "aaacaaa" and get the answer 15 .