308094: CF1466C. Canine poetry

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Canine poetry

题意翻译

**该题有 $t$ 组数据。** 每组数据给出一个由小写字母组成的字符串 $s$。 每次可以将串 $s$ 中任意一个位置的字符修改为另一个小写字母。 问最少要修改多少次,才可以使得串 $s$ 中不存在**长度大于 $1$** 的回文子串。 $t \le 10^5$,$\sum|s| \le 10^5$。 翻译提供:HoshizoraZ

题目描述

After his wife's tragic death, Eurydice, Orpheus descended to the realm of death to see her. Reaching its gates was uneasy, but passing through them proved to be even more challenging. Mostly because of Cerberus, the three-headed hound of Hades. Orpheus, a famous poet, and musician plans to calm Cerberus with his poetry and safely walk past him. He created a very peculiar poem for Cerberus. It consists only of lowercase English letters. We call a poem's substring a palindrome if and only if it reads the same backwards and forwards. A string $ a $ is a substring of a string $ b $ if $ a $ can be obtained from $ b $ by deleting several (possibly zero or all) characters from the beginning and several (possibly zero or all) characters from the end. Unfortunately, Cerberus dislikes palindromes of length greater than $ 1 $ . For example in the poem abaa the hound of Hades wouldn't like substrings aba and aa. Orpheus can only calm Cerberus if the hound likes his poetry. That's why he wants to change his poem so that it does not contain any palindrome substrings of length greater than $ 1 $ . Orpheus can modify the poem by replacing a letter at any position with any lowercase English letter. He can use this operation arbitrarily many times (possibly zero). Since there can be many palindromes in his poem, he may have to make some corrections. But how many, exactly? Given the poem, determine the minimal number of letters that have to be changed so that the poem does not contain any palindromes of length greater than $ 1 $ .

输入输出格式

输入格式


The first line of the input contains a single integer $ t $ ( $ 1 \leq t \leq 10^5 $ ) denoting the number of test cases, then $ t $ test cases follow. The first and only line of each test case contains a non-empty string of lowercase English letters, Orpheus' poem. The sum of the length of Orpheus' poems in all test cases will not exceed $ 10^5 $ .

输出格式


You should output $ t $ lines, $ i $ -th line should contain a single integer, answer to the $ i $ -th test case.

输入输出样例

输入样例 #1

7
babba
abaac
codeforces
zeroorez
abcdcba
bbbbbbb
a

输出样例 #1

1
1
0
1
1
4
0

说明

In the first test case, we can replace the third character with c and obtain a palindrome-less poem bacba. In the second test case, we can replace the third character with d and obtain a palindrome-less poem abdac. In the third test case, the initial poem already doesn't contain any palindromes, so Orpheus doesn't need to change anything there.

Input

题意翻译

**该题有 $t$ 组数据。** 每组数据给出一个由小写字母组成的字符串 $s$。 每次可以将串 $s$ 中任意一个位置的字符修改为另一个小写字母。 问最少要修改多少次,才可以使得串 $s$ 中不存在**长度大于 $1$** 的回文子串。 $t \le 10^5$,$\sum|s| \le 10^5$。 翻译提供:HoshizoraZ

加入题单

算法标签: