「CF464A」No to Palindromes!
题解
题意是就是找一个字典序大于s且最小的串,每个字母在p的范围内,串的任意部分都不能是回文
按照KuribohG的做法。。。(由于我很逗写了不知道什么傻逼玩意)
串的任意部分都不能是回文=串中任意连续3个字符互不相同
而要求字典序最小,应该保持前面的尽量多字符是不改动的
那么只要从后往前枚举每一位,如果某一位a[x]改为k(k>a[x])后与a[x-1],a[x-2]都不同,那么a[1]~a[x-1]就可以确定了
再从x+1开始贪心
举个例子
5 4
abdcb
发现将第二位改成c后与前面的俩位不同,即可以确定ac为开头,可以证明一定能得到解,剩下的几位贪心即可
acbac为最优解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
#include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<cmath> #include<map> #include<set> #include<vector> #include<queue> #define pa pair<int,int> #define inf 1000000000 #define ll long long using namespace std; inline int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } char a[100010],tmp; int n,k,p; char add(int x) { for(char i=a[x]+1;i<k+'a';i++) if(i!=a[x-1]&&i!=a[x-2])return i; return 0; } int main() { n=read();k=read(); scanf("%s",a); for(p=n-1;p>=0;p--) { tmp=add(p); if(tmp){a[p]=tmp;break;} } if(p==-1){puts("NO");return 0;} for(int i=p+1;i<n;i++) { a[i]='a'-1; a[i]=add(i); } printf("%s\n",a); return 0; } |
懂了,谢谢。。。。。。。。。。。。。。。。。
没懂
一定是我逗了。。。我重新写了。。。