CF202A.LLPS
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
This problem's actual name, "Lexicographically Largest Palindromic Subsequence" is too long to fit into the page headline.
You are given string s consisting of lowercase English letters only. Find its lexicographically largest palindromic subsequence.
We'll call a non-empty string s[p1 p2... pk] = sp1sp2... spk ( 1 <= p_{1}<p_{2}<...<p_{k} <= ∣s∣ ) a subsequence of string s = s1 s2... s∣s∣ , where ∣s∣ is the length of string s . For example, strings "abcb", "b" and "abacaba" are subsequences of string "abacaba".
String x = x1 x2... x∣x∣ is lexicographically larger than string y = y1 y2... y∣y∣ if either ∣x∣ > ∣y∣ and x1=y1 , x2=y2 , ..., x∣y∣=y∣y∣ , or there exists such number r ( r<|x| , r<|y| ) that x1=y1 , x2=y2 , ..., xr=yr and x_{r+1}>y_{r+1} . Characters in the strings are compared according to their ASCII codes. For example, string "ranger" is lexicographically larger than string "racecar" and string "poster" is lexicographically larger than string "post".
String s = s1 s2... s∣s∣ is a palindrome if it matches string rev(s) = s∣s∣ s∣s∣−1... s1 . In other words, a string is a palindrome if it reads the same way from left to right and from right to left. For example, palindromic strings are "racecar", "refer" and "z".
输入格式
The only input line contains a non-empty string s consisting of lowercase English letters only. Its length does not exceed 10 .
输出格式
Print the lexicographically largest palindromic subsequence of string s .
输入输出样例
输入#1
radar
输出#1
rr
输入#2
bowwowwow
输出#2
wwwww
输入#3
codeforces
输出#3
s
输入#4
mississipp
输出#4
ssss
说明/提示
Among all distinct subsequences of string "radar" the following ones are palindromes: "a", "d", "r", "aa", "rr", "ada", "rar", "rdr", "raar" and "radar". The lexicographically largest of them is "rr".