D. String Deletion

D. String Deletion
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
You have a string s consisting of n characters. Each character is either 0 or 1.

You can perform operations on the string. Each operation consists of two steps:

1.select an integer i from 1 to the length of the string s, then delete the character si (the string length gets reduced by 1, the indices of characters to the right of the deleted one also get reduced by 1);
2.if the string s is not empty, delete the maximum length prefix consisting of the same characters (the indices of the remaining characters and the string length get reduced by the length of the deleted prefix).

Note that both steps are mandatory in each operation, and their order cannot be changed.

For example, if you have a string s= 111010, the first operation can be one of the following:

select i=1: we’ll get 111010 → 11010 → 010;
select i=2: we’ll get 111010 → 11010 → 010;
select i=3: we’ll get 111010 → 11010 → 010;
select i=4: we’ll get 111010 → 11110 → 0;
select i=5: we’ll get 111010 → 11100 → 00;
select i=6: we’ll get 111010 → 11101 → 01.
You finish performing operations when the string s becomes empty. What is the maximum number of operations you can perform?

Input
The first line contains a single integer t (1≤t≤1000) — the number of test cases.

The first line of each test case contains a single integer n (1≤n≤2⋅105) — the length of the string s.

The second line contains string s of n characters. Each character is either 0 or 1.

It’s guaranteed that the total sum of n over test cases doesn’t exceed 2⋅105.

Output
For each test case, print a single integer — the maximum number of operations you can perform.

方法:双指针+贪心

代码

#include<cstdio>
#include<iostream>
#include<cmath>
#include<set>
#include<cstring>
#include<string>
#include<map>
#include<algorithm>
using namespace std;
typedef long long LL;
int a[200000];
int main()
{
	int t;
	scanf("%d",&t);
	while(t--){
		int strlen,n=1,m=0;
		string s;
		scanf("%d",&strlen);
		cin>>s;
		for(int i=0;i<strlen;i++){
			if(i&&s[i]==s[i-1]) n++;
			if(i&&s[i]!=s[i-1]){
				a[m++]=n;
				n=1;
			}
		}
		a[m++]=n;
		int p1=0,p2=0,ans=0;
		while(1){
			while(a[p2]==1&&p2<m) p2++;
			if(p2>=m) break;
			a[p2]--;p1++;ans++;
			if(p2<p1) p2=p1;	
		}
		if((p2-p1)%2) ans+=(p2-p1)/2+1;
		else ans+=(p2-p1)/2;
		printf("%d\n",ans);
	}
	return 0;
}

为使字符串在变为空串的过程中使用尽可能多的次数,我们应尽量避免长连通串被一次性消掉的情况,用p1模拟步骤2的操作,p2模拟步骤1的操作,用p2寻找靠近字符串前端的长连通串,并通过削减长连通串来增加字符串的可操作数。

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Rockict_z

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值