#x1045. CF835d Palindromic characteristics
CF835d Palindromic characteristics
Palindromic characteristics
题面翻译
给你一个串,让你求出k阶回文子串有多少个。k从1到n。k阶子串的定义是:子串本身是回文串,而且它的左半部分也是回文串。 首先明确: 1、如果一个字串是k阶回文,那他一定还是k-1阶回文。 2、如果一个串是k阶回文,那么这个串需要满足: 1.它本是是回文的。 2.他的左半部分是k-1回文的。
题目描述
Palindromic characteristics of string with length is a sequence of integers, where -th number is the total number of non-empty substrings of which are -palindromes.
A string is -palindrome if and only if it reads the same backward as forward.
A string is -palindrome ( k>1 ) if and only if:
- Its left half equals to its right half.
- Its left and right halfs are non-empty ( )-palindromes.
The left half of string is its prefix of length , and right half — the suffix of the same length. denotes the length of string divided by , rounded down.
Note that each substring is counted as many times as it appears in the string. For example, in the string "aaa" the substring "a" appears 3 times.
输入格式
The first line contains the string ( ) consisting of lowercase English letters.
输出格式
Print integers — palindromic characteristics of string .
样例 #1
样例输入 #1
abba
样例输出 #1
6 1 0 0
样例 #2
样例输入 #2
abacaba
样例输出 #2
12 4 1 0 0 0 0
提示
In the first example 1-palindromes are substring «a», «b», «b», «a», «bb», «abba», the substring «bb» is 2-palindrome. There are no 3- and 4-palindromes here.