QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#733528#7880. Streak ManipulationHHSWA 15ms25708kbC++14863b2024-11-10 19:41:252024-11-10 19:41:25

Judging History

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

  • [2024-11-10 19:41:25]
  • 评测
  • 测评结果:WA
  • 用时:15ms
  • 内存:25708kb
  • [2024-11-10 19:41:25]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n,m,k;
ll f[200009][7][2];
int main()
{
	cin>>n>>m>>k;
	string str;
	cin>>str;
	vector<ll>a(n+10);
	str=' '+str;
	for(ll i=1;i<=n;i++)
	{
		if(str[i]=='0')a[i]=0;
		else a[i]=1;
	}
	ll l=1,r=n;
	while(l<=r)
	{
		ll mid=(l+r)/2;
		memset(f,0x3f3f3f3f,sizeof f);
		
			f[0][0][0]=0;
		
		for(ll i=1;i<=n;i++)
		{
			for(ll j=0;j<=k;j++)
			{
				f[i][j][0]=min(f[i-1][j][0],f[i-1][j][1]);
				if(i>=mid&&j>0)
				{
					f[i][j][1]=f[i-mid][j-1][0];
					for(ll s=i-mid+1;s<=i;s++)
						if(!a[s])f[i][j][1]++;
				}
			}
		}
		if(f[n][k][0]<=m||f[n][k][1]<=m)
		{
			l=mid+1;
		//	cout<<mid<<" l"<<endl;
		}
		else
		{
			r=mid-1;
		//	cout<<mid<<" r"<<endl;
		}
	
	}
	if(r<1)
	{
		cout<<-1<<endl;
	}
	else 
	{
		cout<<r<<endl;
	}

	
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 25700kb

input:

8 3 2
10110110

output:

3

result:

ok 1 number(s): "3"

Test #2:

score: 0
Accepted
time: 8ms
memory: 25700kb

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

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

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

score: 0
Accepted
time: 13ms
memory: 25492kb

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

99

result:

ok 1 number(s): "99"

Test #5:

score: 0
Accepted
time: 15ms
memory: 25648kb

input:

1000 200 5
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

40

result:

ok 1 number(s): "40"

Test #6:

score: -100
Wrong Answer
time: 13ms
memory: 25460kb

input:

1000 200 5
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:

199

result:

wrong answer 1st numbers differ - expected: '-1', found: '199'