【CF】edu 12 C. Simple Strings (字符串和dp)

题目链接: 

Educational Codeforces Round 12 C

zscoder喜欢简单字符串!如果每一对相邻字符都是不同的,则称为简单字符串 t 。例如,ab, aba, zscoder 是简单字符串,而 aa, add 则不简单。

zscoder 给出了一个字符串 s 。他想更改最少的字符数,使字符串 s 变得简单。请帮助他完成这项任务!

输出

打印简单字符串 s' - 最小更改次数后的字符串 s 。如果有多个解决方案,可以输出其中任何一个。

请注意,字符串 s' 也只能由小写英文字母组成。

// Problem: C. Simple Strings
// Contest: Codeforces - Educational Codeforces Round 12
// URL: https://codeforces.com/contest/665/problem/C
// Memory Limit: 256 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;

const int N = 2e5+5;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0),cout.tie(0);

	string a;
	cin>>a;
	for(int i=0;i<a.size();i++){
		if(a[i]==a[i+1]){
			int j=i;
			while(j+1<a.size()&&a[j]==a[j+1]){
				j++;
			}
			for(int k=i+1;k<=j;k+=2){
				for(int i='a';i<='z';i++){
					if(i!=a[k-1]&&i!=a[k+1]){
						a[k]=i;
					}
				}
			}
		}
	}
	cout<<a<<"\n";
	
	return 0;	

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值