| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 | 1024 MB | 672 | 337 | 276 | 55.090% |
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 $w,ドル if $k$ is the minimum number of characters removed to make the string a palindrome, we call the string $w$ type-$k$ palindrome. Thus, if $w$ is a palindrome, then $w$ is a type-0ドル$ palindrome.
Given a string $w,ドル write a program to determine if $w$ is a type-$k$ palindrome where $k = 0, 1, 2, 3$.
Your program is to read from standard input. The input is a single line containing a string $w$ with length $n$ (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 $k$ among $\{0, 1, 2, 3, -1\}$ if the input string is a type-$k$ palindrome where $k = 0, 1, 2, 3$ and otherwise $-1$. The negative number $-1$ means the input string is not a type-$k$ palindrome where $k = 0, 1, 2, 3$.
aababaa
0
abccbbab
2
acmicpc
-1
ICPC > Regionals > Asia Pacific > Korea > Asia Regional - Seoul 2022 I번