CF1702B.Polycarp Writes a String from Memory

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp has a poor memory. Each day he can remember no more than 33 of different letters.

Polycarp wants to write a non-empty string of ss consisting of lowercase Latin letters, taking minimum number of days. In how many days will he be able to do it?

Polycarp initially has an empty string and can only add characters to the end of that string.

For example, if Polycarp wants to write the string lollipops, he will do it in 22 days:

  • on the first day Polycarp will memorize the letters l, o, i and write lolli;
  • On the second day Polycarp will remember the letters p, o, s, add pops to the resulting line and get the line lollipops.

If Polycarp wants to write the string stringology, he will do it in 44 days:

  • in the first day will be written part str;
  • on day two will be written part ing;
  • on the third day, part of olog will be written;
  • on the fourth day, part of y will be written.

For a given string ss , print the minimum number of days it will take Polycarp to write it.

输入格式

The first line of input data contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

Each test case consists of a non-empty string ss consisting of lowercase Latin letters (the length of the string ss does not exceed 21052 \cdot 10^5 ) — the string Polycarp wants to construct.

It is guaranteed that the sum of string lengths ss over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, print a single number — minimum number of days it will take Polycarp to write the string ss from memory.

输入输出样例

  • 输入#1

    6
    lollipops
    stringology
    abracadabra
    codeforces
    test
    f

    输出#1

    2
    4
    3
    4
    1
    1
首页