QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#653038#7880. Streak ManipulationYurilyTL 25ms13736kbC++201021b2024-10-18 19:28:472024-10-18 19:28:47

Judging History

你现在查看的是最新测评结果

  • [2024-10-18 19:28:47]
  • 评测
  • 测评结果:TL
  • 用时:25ms
  • 内存:13736kb
  • [2024-10-18 19:28:47]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int MAX=2e5+5;
int n,m,k;
int f[MAX][6][2],sum[MAX];
string s;
bool check(int x){
	memset(f,0x3f,sizeof(f));
	f[0][0][0]=0;
	for(int i=1;i<=n;++i){
		if(s[i]=='0'){
			f[i][0][0]=0;
			f[i][0][1]=1;
		}
		else
			f[i][0][1]=0;	
		for(int j=1;j<=k;++j){
			if(s[i]=='0'){
				f[i][j][0]=min(f[i-1][j][0],f[i-1][j][1]);
			}
			f[i][j][1]=min(f[i-1][j][0],f[i-1][j][1]);
			for(int l=0;i-l>=x;++l){
				f[i][j][1]=min((long long)f[i][j][1],(long long)f[l][j-1][0]+(i-l)-(sum[i]-sum[l]));
			}
		//	if(x==3)
		//	cout<<i<<" "<<j<<" "<<f[i][j][0]<<" "<<f[i][j][1]<<endl;
		}
	}
	return min(f[n][k][0],f[n][k][1])<=m;
}
int main(){
	cin>>n>>m>>k;
	cin>>s;
	s=" "+s;
	int l=1,r=n,res=-1;
	for(int i=1;i<=n;++i){
		if(s[i]=='1')
			sum[i]=sum[i-1]+1;
		else
			sum[i]=sum[i-1];
	}
	while(l<=r){
		int mid=l+r>>1;
	//	cout<<mid<<endl;
		if(check(mid)){
			res=mid;
			l=mid+1;
		}
		else{
			r=mid-1;
		}
	}
	
	cout<<res; 
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 13352kb

input:

8 3 2
10110110

output:

3

result:

ok 1 number(s): "3"

Test #2:

score: 0
Accepted
time: 0ms
memory: 12892kb

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

score: 0
Accepted
time: 2ms
memory: 12908kb

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

score: 0
Accepted
time: 22ms
memory: 12792kb

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

99

result:

ok 1 number(s): "99"

Test #5:

score: 0
Accepted
time: 25ms
memory: 13736kb

input:

1000 200 5
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

40

result:

ok 1 number(s): "40"

Test #6:

score: 0
Accepted
time: 22ms
memory: 12876kb

input:

1000 200 5
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:

-1

result:

ok 1 number(s): "-1"

Test #7:

score: -100
Time Limit Exceeded

input:

200000 5 3
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:


result: