Codeforces #560 (Div. 3) C. Good String(思维)

Good String

题目大意:(文末有原题)

给出一个字符串,判断需要删除多少个元素才能使串变成好串;

好串:每一个奇数位(第i位)的字符与其下一位(第i+1位)的字符不相等;空串也是好串;

思路:

二重循环,第一重判断是否是奇数位与下一位是否相同,

如果相同进入第二重循环,删去与奇数位相同的元素,直到遇到不同的;

否则进入下一个奇数位;

代码:

#include <iostream>
using namespace std;

const int maxn = 2e5 + 10;
char a[maxn], ans[maxn];

int main() {
	int n;
	cin >> n;
	cin >> a;
	int s = 0, k = 0;
	
	for(int i = 0; i < n;) {
		int d = 0;
		if(i == n - 1){
			s++;
			break;
		}
		if(a[i] == a[i + 1]) {
			int j;	//从i+1开始判断是否相等,直到不相等跳出循环,否则一直删去, 
			for(j = i + 1; j < n; j++) {
				if(a[i] == a[j]) {
					s++;
				}else {
					d = 1;
					break;
				}
			}
			if(d){
				ans[k++] = a[i];
				ans[k++] = a[j];
				i = j + 1;
			}else {	//如果d==0,就说明是循环结束,就是a[i]与其之后的元素一直相等,所以连a[i]也不要 
				s++;
				i = j + 1;
			}
		}else {
			ans[k++] = a[i];
			ans[k++] = a[i + 1];
			i += 2;
		}
	}
	
	cout << s << endl << ans << endl;
	return 0;
}

原题:

题目:

Let's call (yet again) a string good if its length is even, and every character in odd position of this string is different from the next character (the first character is different from the second, the third is different from the fourth, and so on). For example, the strings good, string and xyyx are good strings, and the strings bad, aa and aabc are not good. Note that the empty string is considered good.

You are given a string ss, you have to delete minimum number of characters from this string so that it becomes good.

输入:

The first line contains one integer n (1≤n≤2⋅10^5) — the number of characters in s.

The second line contains the string s, consisting of exactly nn lowercase Latin letters.

输出:

In the first line, print one integer k (0≤k≤n0≤k≤n) — the minimum number of characters you have to delete from ss to make it good.

In the second line, print the resulting string s. If it is empty, you may leave the second line blank, or not print it at all.

样例:

Input:

4
good

Output:

0
good

Input:

4
aabc

Output:

2
ab

Input:

3
aaa

Output:

3

 

在探索智慧旅游的新纪元中,一个集科技、创新与服务于一体的整体解决方案正悄然改变着我们的旅行方式。智慧旅游,作为智慧城市的重要分支,旨在通过新一代信息技术,如云计算、大数据、物联网等,为游客、旅游企业及政府部门提供无缝对接、高效互动的旅游体验与管理模式。这一方案不仅重新定义了旅游行业的服务标准,更开启了旅游业数字化转型的新篇章。 智慧旅游的核心在于“以人为本”,它不仅仅关注技术的革新,更注重游客体验的提升。从游前的行程规划、信息查询,到游中的智能导航、个性化导览,再到游后的心情分享、服务评价,智慧旅游通过构建“一云多屏”的服务平台,让游客在旅游的全过程中都能享受到便捷、个性化的服务。例如,游客可以通过手机APP轻松定制专属行程,利用智能语音导览深入了解景点背后的故事,甚至通过三维GIS地图实现虚拟漫游,提前感受目的地的魅力。这些创新服务不仅增强了游客的参与感和满意度,也让旅游变得更加智能化、趣味化。 此外,智慧旅游还为旅游企业和政府部门带来了前所未有的管理变革。通过大数据分析,旅游企业能够精准把握市场动态,实现旅游产品的精准营销和个性化推荐,从而提升市场竞争力。而政府部门则能利用智慧旅游平台实现对旅游资源的科学规划和精细管理,提高监管效率和质量。例如,通过实时监控和数据分析,政府可以迅速应对旅游高峰期的客流压力,有效预防景区超载,保障游客安全。同时,智慧旅游还促进了跨行业、跨部门的数据共享与协同合作,为旅游业的可持续发展奠定了坚实基础。总之,智慧旅游以其独特的魅力和无限潜力,正引领着旅游业迈向一个更加智慧、便捷、高效的新时代。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值