CF1178E.Archaeology

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Alice bought a Congo Prime Video subscription and was watching a documentary on the archaeological findings from Factor's Island on Loch Katrine in Scotland. The archaeologists found a book whose age and origin are unknown. Perhaps Alice can make some sense of it?

The book contains a single string of characters "a", "b" and "c". It has been pointed out that no two consecutive characters are the same. It has also been conjectured that the string contains an unusually long subsequence that reads the same from both sides.

Help Alice verify this by finding such subsequence that contains at least half of the characters of the original string, rounded down. Note that you don't have to maximise the length of it.

A string aa is a subsequence of a string bb if aa can be obtained from bb by deletion of several (possibly, zero or all) characters.

输入格式

The input consists of a single string ss ( 2s1062 \leq |s| \leq 10^6 ). The string ss consists only of characters "a", "b", "c". It is guaranteed that no two consecutive characters are equal.

输出格式

Output a palindrome tt that is a subsequence of ss and ts2|t| \geq \lfloor \frac{|s|}{2} \rfloor .

If there are multiple solutions, you may print any of them. You don't have to maximise the length of tt .

If there are no solutions, output a string "IMPOSSIBLE" (quotes for clarity).

输入输出样例

  • 输入#1

    cacbac
    

    输出#1

    aba
    
  • 输入#2

    abc
    

    输出#2

    a
    
  • 输入#3

    cbacacacbcbababacbcb
    

    输出#3

    cbaaacbcaaabc

说明/提示

In the first example, other valid answers include "cacac", "caac", "aca" and "ccc".

首页