A13604 | a-Good String
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a string $s[1 \dots n]$ consisting of lowercase Latin letters. It is guaranteed that $n = 2^k$ for some integer $k \ge 0$ .
The string $s[1 \dots n]$ is called $c$ -good if at least one of the following three conditions is satisfied:
- The length of $s$ is $1$ , and it consists of the character $c$ (i.e. $s_1=c$ );
- The length of $s$ is greater than $1$ , the first half of the string consists of only the character $c$ (i.e. $s_1=s_2=\dots=s_{\frac{n}{2}}=c$ ) and the second half of the string (i.e. the string $s_{\frac{n}{2} + 1}s_{\frac{n}{2} + 2} \dots s_n$ ) is a $(c+1)$ -good string;
- The length of $s$ is greater than $1$ , the second half of the string consists of only the character $c$ (i.e. $s_{\frac{n}{2} + 1}=s_{\frac{n}{2} + 2}=\dots=s_n=c$ ) and the first half of the string (i.e. the string $s_1s_2 \dots s_{\frac{n}{2}}$ ) is a $(c+1)$ -good string.
For example: "aabc" is 'a'-good, "ffgheeee" is 'e'-good.
In one move, you can choose one index $i$ from $1$ to $n$ and replace $s_i$ with any lowercase Latin letter (any character from 'a' to 'z').
Your task is to find the minimum number of moves required to obtain an 'a'-good string from $s$ (i.e. $c$ -good string for $c=$ 'a'). It is guaranteed that the answer always exists.
You have to answer $t$ independent test cases.
Another example of an 'a'-good string is as follows. Consider the string $s = $ "cdbbaaaa". It is an 'a'-good string, because:
- the second half of the string ("aaaa") consists of only the character 'a';
- the first half of the string ("cdbb") is 'b'-good string, because:
- the second half of the string ("bb") consists of only the character 'b';
- the first half of the string ("cd") is 'c'-good string, because:
- the first half of the string ("c") consists of only the character 'c';
- the second half of the string ("d") is 'd'-good string.
The string $s[1 \dots n]$ is called $c$ -good if at least one of the following three conditions is satisfied:
- The length of $s$ is $1$ , and it consists of the character $c$ (i.e. $s_1=c$ );
- The length of $s$ is greater than $1$ , the first half of the string consists of only the character $c$ (i.e. $s_1=s_2=\dots=s_{\frac{n}{2}}=c$ ) and the second half of the string (i.e. the string $s_{\frac{n}{2} + 1}s_{\frac{n}{2} + 2} \dots s_n$ ) is a $(c+1)$ -good string;
- The length of $s$ is greater than $1$ , the second half of the string consists of only the character $c$ (i.e. $s_{\frac{n}{2} + 1}=s_{\frac{n}{2} + 2}=\dots=s_n=c$ ) and the first half of the string (i.e. the string $s_1s_2 \dots s_{\frac{n}{2}}$ ) is a $(c+1)$ -good string.
For example: "aabc" is 'a'-good, "ffgheeee" is 'e'-good.
In one move, you can choose one index $i$ from $1$ to $n$ and replace $s_i$ with any lowercase Latin letter (any character from 'a' to 'z').
Your task is to find the minimum number of moves required to obtain an 'a'-good string from $s$ (i.e. $c$ -good string for $c=$ 'a'). It is guaranteed that the answer always exists.
You have to answer $t$ independent test cases.
Another example of an 'a'-good string is as follows. Consider the string $s = $ "cdbbaaaa". It is an 'a'-good string, because:
- the second half of the string ("aaaa") consists of only the character 'a';
- the first half of the string ("cdbb") is 'b'-good string, because:
- the second half of the string ("bb") consists of only the character 'b';
- the first half of the string ("cd") is 'c'-good string, because:
- the first half of the string ("c") consists of only the character 'c';
- the second half of the string ("d") is 'd'-good string.
输入格式
The first line of the input contains one integer $t$ ( $1 \le t \le 2 \cdot 10^4$ ) — the number of test cases. Then $t$ test cases follow.
The first line of the test case contains one integer $n$ ( $1 \le n \le 131~072$ ) — the length of $s$ . It is guaranteed that $n = 2^k$ for some integer $k \ge 0$ . The second line of the test case contains the string $s$ consisting of $n$ lowercase Latin letters.
It is guaranteed that the sum of $n$ does not exceed $2 \cdot 10^5$ ( $\sum n \le 2 \cdot 10^5$ ).
The first line of the test case contains one integer $n$ ( $1 \le n \le 131~072$ ) — the length of $s$ . It is guaranteed that $n = 2^k$ for some integer $k \ge 0$ . The second line of the test case contains the string $s$ consisting of $n$ lowercase Latin letters.
It is guaranteed that the sum of $n$ does not exceed $2 \cdot 10^5$ ( $\sum n \le 2 \cdot 10^5$ ).
输出格式
For each test case, print the answer — the minimum number of moves required to obtain an 'a'-good string from $s$ (i.e. $c$ -good string with $c =$ 'a'). It is guaranteed that the answer exists.
输入输出样例
输入 #1
6 8 bbdcaaaa 8 asdfghjk 8 ceaaaabb 8 bbaaddcc 1 z 2 ac
输出 #1
0 7 4 5 1 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted