CF1216A.Prefixes

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Prefixes

Nikolay got a string ss of even length nn, which consists only of lowercase Latin letters 'a' and 'b'. Its positions are numbered from 11 to nn.

He wants to modify his string so that every its prefix of even length has an equal amount of letters 'a' and 'b'. To achieve that, Nikolay can perform the following operation arbitrary number of times (possibly, zero): choose some position in his string and replace the letter on this position with the other letter (i.e. replace 'a' with 'b' or replace 'b' with 'a'). Nikolay can use no letters except 'a' and 'b'.

The prefix of string ss of length ll (1ln1 \le l \le n) is a string s[1..l]s[1..l].

For example, for the string s=s="abba" there are two prefixes of the even length. The first is s[12]=s[1\dots2]="ab" and the second s[14]=s[1\dots4]="abba". Both of them have the same number of 'a' and 'b'.

Your task is to calculate the minimum number of operations Nikolay has to perform with the string ss to modify it so that every its prefix of even length has an equal amount of letters 'a' and 'b'.

Input

The first line of the input contains one even integer nn (2n2105)(2 \le n \le 2\cdot10^{5}) — the length of string ss.

The second line of the input contains the string ss of length nn, which consists only of lowercase Latin letters 'a' and 'b'.

Output

In the first line print the minimum number of operations Nikolay has to perform with the string ss to modify it so that every its prefix of even length has an equal amount of letters 'a' and 'b'.

In the second line print the string Nikolay obtains after applying all the operations. If there are multiple answers, you can print any of them.

Note

In the first example Nikolay has to perform two operations. For example, he can replace the first 'b' with 'a' and the last 'b' with 'a'.

In the second example Nikolay doesn't need to do anything because each prefix of an even length of the initial string already contains an equal amount of letters 'a' and 'b'.

Samples

4
bbbb
2
abba
6
ababab
0
ababab
2
aa
1
ba

在线编程 IDE

建议全屏模式获得最佳体验