题库练习 Tear It Apart
← 上一题 下一题 →

A15939 | Tear It Apart

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given a string $s$ , consisting of lowercase Latin letters.

In one operation, you can select several (one or more) positions in it such that no two selected positions are adjacent to each other. Then you remove the letters on the selected positions from the string. The resulting parts are concatenated without changing their order.

What is the smallest number of operations required to make all the letters in $s$ the same?

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of testcases.

The only line of each testcase contains a string $s$ , consisting of lowercase Latin letters. Its length is from $1$ to $2 \cdot 10^5$ .

The total length of the strings over all testcases doesn't exceed $2 \cdot 10^5$ .

输出格式

For each testcase, print a single integer — the smallest number of operations required to make all the letters in the given string $s$ the same.

输入输出样例

输入 #1
5
abacaba
codeforces
oooooooo
abcdef
mewheniseearulhiiarul
输出 #1
1
3
0
2
4
C++ 编辑器
输入
输出