CF219C.Color Stripe

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A colored stripe is represented by a horizontal row of nn square cells, each cell is pained one of kk colors. Your task is to repaint the minimum number of cells so that no two neighbouring cells are of the same color. You can use any color from 1 to kk to repaint the cells.

输入格式

The first input line contains two integers nn and kk ( 1<=n<=5105; 2<=k<=261<=n<=5·10^{5}; 2<=k<=26 ). The second line contains nn uppercase English letters. Letter "A" stands for the first color, letter "B" stands for the second color and so on. The first kk English letters may be used. Each letter represents the color of the corresponding cell of the stripe.

输出格式

Print a single integer — the required minimum number of repaintings. In the second line print any possible variant of the repainted stripe.

输入输出样例

  • 输入#1

    6 3
    ABBACC
    

    输出#1

    2
    ABCACA
    
  • 输入#2

    3 2
    BBB
    

    输出#2

    1
    BAB
    
首页