CF464A.No to Palindromes!
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Paul hates palindromes. He assumes that string s is tolerable if each its character is one of the first p letters of the English alphabet and s doesn't contain any palindrome contiguous substring of length 2 or more.
Paul has found a tolerable string s of length n . 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: n and p ( 1<=n<=1000 ; 1<=p<=26 ). The second line contains string s , consisting of n 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 s is lexicographically larger (or simply larger) than string t with the same length, if there is number i , such that s1=t1 , ..., si=ti , 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.