305150: CF981A. Antipalindrome
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Antipalindrome
题意翻译
给定一段字符串,求这段字符串中最长的不回文字符串题目描述
A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not. A substring $ s[l \ldots r] $ ( $ 1 \leq l \leq r \leq |s| $ ) of a string $ s = s_{1}s_{2} \ldots s_{|s|} $ is the string $ s_{l}s_{l + 1} \ldots s_{r} $ . Anna does not like palindromes, so she makes her friends call her Ann. She also changes all the words she reads in a similar way. Namely, each word $ s $ is changed into its longest substring that is not a palindrome. If all the substrings of $ s $ are palindromes, she skips the word at all. Some time ago Ann read the word $ s $ . What is the word she changed it into?输入输出格式
输入格式
The first line contains a non-empty string $ s $ with length at most $ 50 $ characters, containing lowercase English letters only.
输出格式
If there is such a substring in $ s $ that is not a palindrome, print the maximum length of such a substring. Otherwise print $ 0 $ . Note that there can be multiple longest substrings that are not palindromes, but their length is unique.
输入输出样例
输入样例 #1
mew
输出样例 #1
3
输入样例 #2
wuffuw
输出样例 #2
5
输入样例 #3
qqqqqqqq
输出样例 #3
0