A10015 | LCS Again
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a string $S$ of length $n$ with each character being one of the first $m$ lowercase English letters.
Calculate how many different strings $T$ of length $n$ composed from the first $m$ lowercase English letters exist such that the length of LCS (longest common subsequence) between $S$ and $T$ is $n-1$ .
Recall that LCS of two strings $S$ and $T$ is the longest string $C$ such that $C$ both in $S$ and $T$ as a subsequence.
Calculate how many different strings $T$ of length $n$ composed from the first $m$ lowercase English letters exist such that the length of LCS (longest common subsequence) between $S$ and $T$ is $n-1$ .
Recall that LCS of two strings $S$ and $T$ is the longest string $C$ such that $C$ both in $S$ and $T$ as a subsequence.
输入格式
The first line contains two numbers $n$ and $m$ denoting the length of string $S$ and number of first English lowercase characters forming the character set for strings ( $1<=n<=100000$ , $2<=m<=26$ ).
The second line contains string $S$ .
The second line contains string $S$ .
输出格式
Print the only line containing the answer.
输入输出样例
输入 #1
3 3 aaa
输出 #1
6
输入 #2
3 3 aab
输出 #2
11
输入 #3
1 2 a
输出 #3
1
输入 #4
10 9 abacadefgh
输出 #4
789
For the first sample, the $6$ possible strings $T$ are: aab, aac, aba, aca, baa, caa.
For the second sample, the $11$ possible strings $T$ are: aaa, aac, aba, abb, abc, aca, acb, baa, bab, caa, cab.
For the third sample, the only possible string $T$ is b.
For the second sample, the $11$ possible strings $T$ are: aaa, aac, aba, abb, abc, aca, acb, baa, bab, caa, cab.
For the third sample, the only possible string $T$ is b.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted