CF464A.No to Palindromes!

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Paul hates palindromes. He assumes that string ss is tolerable if each its character is one of the first pp letters of the English alphabet and ss doesn't contain any palindrome contiguous substring of length 2 or more.

Paul has found a tolerable string ss of length nn . Help him find the lexicographically next tolerable string of the same length or else state that such string does not exist.

输入格式

The first line contains two space-separated integers: nn and pp ( 1<=n<=10001<=n<=1000 ; 1<=p<=261<=p<=26 ). The second line contains string ss , consisting of nn small English letters. It is guaranteed that the string is tolerable (according to the above definition).

输出格式

If the lexicographically next tolerable string of the same length exists, print it. Otherwise, print "NO" (without the quotes).

输入输出样例

  • 输入#1

    3 3
    cba
    

    输出#1

    NO
    
  • 输入#2

    3 4
    cba
    

    输出#2

    cbd
    
  • 输入#3

    4 4
    abcd
    

    输出#3

    abda
    

说明/提示

String ss is lexicographically larger (or simply larger) than string tt with the same length, if there is number ii , such that s1=t1s_{1}=t_{1} , ..., si=tis_{i}=t_{i} , s_{i+1}>t_{i+1} .

The lexicographically next tolerable string is the lexicographically minimum tolerable string which is larger than the given one.

A palindrome is a string that reads the same forward or reversed.

首页