A14867 | Get an Even String
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A string $a=a_1a_2\dots a_n$ is called even if it consists of a concatenation (joining) of strings of length $2$ consisting of the same characters. In other words, a string $a$ is even if two conditions are satisfied at the same time:
- its length $n$ is even;
- for all odd $i$ ( $1 \le i \le n - 1$ ), $a_i = a_{i+1}$ is satisfied.
For example, the following strings are even: "" (empty string), "tt", "aabb", "oooo", and "ttrrrroouuuuuuuukk". The following strings are not even: "aaa", "abab" and "abba".
Given a string $s$ consisting of lowercase Latin letters. Find the minimum number of characters to remove from the string $s$ to make it even. The deleted characters do not have to be consecutive.
- its length $n$ is even;
- for all odd $i$ ( $1 \le i \le n - 1$ ), $a_i = a_{i+1}$ is satisfied.
For example, the following strings are even: "" (empty string), "tt", "aabb", "oooo", and "ttrrrroouuuuuuuukk". The following strings are not even: "aaa", "abab" and "abba".
Given a string $s$ consisting of lowercase Latin letters. Find the minimum number of characters to remove from the string $s$ to make it even. The deleted characters do not have to be consecutive.
输入格式
The first line of input data contains an integer $t$ ( $1 \le t \le 10^4$ ) —the number of test cases in the test.
The descriptions of the test cases follow.
Each test case consists of one string $s$ ( $1 \le |s| \le 2 \cdot 10^5$ ), where $|s|$ — the length of the string $s$ . The string consists of lowercase Latin letters.
It is guaranteed that the sum of $|s|$ on all test cases does not exceed $2 \cdot 10^5$ .
The descriptions of the test cases follow.
Each test case consists of one string $s$ ( $1 \le |s| \le 2 \cdot 10^5$ ), where $|s|$ — the length of the string $s$ . The string consists of lowercase Latin letters.
It is guaranteed that the sum of $|s|$ on all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, print a single number — the minimum number of characters that must be removed to make $s$ even.
输入输出样例
输入 #1
6 aabbdabdccc zyx aaababbb aabbcc oaoaaaoo bmefbmuyw
输出 #1
3 3 2 0 2 7
In the first test case you can remove the characters with indices $6$ , $7$ , and $9$ to get an even string "aabbddcc".
In the second test case, each character occurs exactly once, so in order to get an even string, you must remove all characters from the string.
In the third test case, you can get an even string "aaaabb" by removing, for example, $4$ -th and $6$ -th characters, or a string "aabbbb" by removing the $5$ -th character and any of the first three.
In the second test case, each character occurs exactly once, so in order to get an even string, you must remove all characters from the string.
In the third test case, you can get an even string "aaaabb" by removing, for example, $4$ -th and $6$ -th characters, or a string "aabbbb" by removing the $5$ -th character and any of the first three.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted