CF1165C.Good String

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Let's call (yet again) a string good if its length is even, and every character in odd position of this string is different from the next character (the first character is different from the second, the third is different from the fourth, and so on). For example, the strings good, string and xyyx are good strings, and the strings bad, aa and aabc are not good. Note that the empty string is considered good.

You are given a string ss , you have to delete minimum number of characters from this string so that it becomes good.

输入格式

The first line contains one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of characters in ss .

The second line contains the string ss , consisting of exactly nn lowercase Latin letters.

输出格式

In the first line, print one integer kk ( 0kn0 \le k \le n ) — the minimum number of characters you have to delete from ss to make it good.

In the second line, print the resulting string ss . If it is empty, you may leave the second line blank, or not print it at all.

输入输出样例

  • 输入#1

    4
    good
    

    输出#1

    0
    good
    
  • 输入#2

    4
    aabc
    

    输出#2

    2
    ab
    
  • 输入#3

    3
    aaa
    

    输出#3

    3
    
    
首页