首页 > 其他 > 详细

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

时间:2014-09-17 18:47:02      阅读:247      评论:0      收藏:0      [点我收藏+]

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;
}


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

原文:http://blog.csdn.net/u011345136/article/details/39345111

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!