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 ss consisting of lowercase English letters only. Find its lexicographically largest palindromic subsequence.

We'll call a non-empty string s[p1s[p_{1} p2... pk]p_{2}...\ p_{k}] = sp1sp2... spks_{p1}s_{p2}...\ s_{pk} ( 11 <=<= p_{1}<p_{2}<...<p_{k} <=<= s|s| ) a subsequence of string ss = s1s_{1} s2... sss_{2}...\ s_{|s|} , where s|s| is the length of string ss . For example, strings "abcb", "b" and "abacaba" are subsequences of string "abacaba".

String xx = x1x_{1} x2... xxx_{2}...\ x_{|x|} is lexicographically larger than string yy = y1y_{1} y2... yyy_{2}...\ y_{|y|} if either x|x| > y|y| and x1=y1x_{1}=y_{1} , x2=y2x_{2}=y_{2} , ..., xy=yyx_{|y|}=y_{|y|} , or there exists such number rr ( r<|x| , r<|y| ) that x1=y1x_{1}=y_{1} , x2=y2x_{2}=y_{2} , ..., xr=yrx_{r}=y_{r} 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 ss = s1s_{1} s2... sss_{2}...\ s_{|s|} is a palindrome if it matches string rev(s)rev(s) = sss_{|s|} ss1... s1s_{|s|-1}...\ s_{1} . 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 ss consisting of lowercase English letters only. Its length does not exceed 1010 .

输出格式

Print the lexicographically largest palindromic subsequence of string ss .

输入输出样例

  • 输入#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".

首页