Palindrome Type
문제
A palindrome string is a word which reads the same backward as forward, such as madam or racecar. In this problem we only consider strings with lowercase alphabets.
We newly define the types of palindromes. If a string is not a palindrome, we try to make it a palindrome by removing the minimum number of characters in the string. For a string , if is the minimum number of characters removed to make the string a palindrome, we call the string type- palindrome. Thus, if is a palindrome, then is a type- palindrome.
Given a string , write a program to determine if is a type- palindrome where .
입력
Your program is to read from standard input. The input is a single line containing a string with length (5 ≤ n ≤ 10^5) of lowercase alphabets.
출력
Your program is to write to standard output. Print exactly one line. The line should contain a number among if the input string is a type- palindrome where and otherwise . The negative number means the input string is not a type- palindrome where .
예제
예제 1
aababaa
0
예제 2
abccbbab
2
예제 3
acmicpc
-1