Codeforces Round #265 (Div. 2) C. No to Palindromes!

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.

Input

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).

Output

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

Sample test(s)
Input
3 3
cba
Output
NO
Input
3 4
cba
Output
cbd
Input
4 4
abcd
Output
abda
Note

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, si + 1 > ti + 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.

题意:求满足大于给定串的序列,而且两个序列都不包含长度大于等于2的回文子串

思路:首先,因为不能有长度大于等于2的子串,所以当前位置是不能和它的前一个和前第二个一样的。因为给定串也是不包含回文子串的,所以为了能找个一个最小的满足条件的字符串,我们从右往前改,找到一个满足不与前两个一样的位置的话,那么从这个位置往右就是填写不构成回文的最小串了

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn = 1010;

int n, p;
char str[maxn], tmp;

int find(const int &x) {
	if (x == -1) 
		return 0;
	for (int i = 1; ; i++) {
		if (str[x] + i >= tmp) break;
		if (x > 0 && str[x-1] == str[x] + i) continue;
		if (x > 0 && str[x-2] == str[x] + i) continue;
		str[x] += i;
		return 1;
	}

	if (!find(x-1)) 
		return 0;

	str[x] = 'a';
	for (int i = 0; ; i++) {
		if (str[x] + i >= tmp) break;
		if (x > 0 && str[x-1] == str[x] + i) continue;
		if (x > 1 && str[x-2] == str[x] + i) continue;
		str[x] += i;
		return 1;
	}
	return 0;
}

int main() {
	scanf("%d%d", &n, &p);	
	tmp = 'a' + p;
	scanf("%s", str);
	if (find(n-1))
		printf("%s\n", str);
	else printf("NO\n");
	return 0;
}


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值