A13688 | Subsequences of Length Two
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $s_i$ (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.
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 $s_i$ (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 \le n \le 200$ ; $0 \le k \le 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 $s_1$ with 'a' and $s_4$ 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$ .
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$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted