QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#278598#7880. Streak Manipulationucup-team073#WA 12ms25244kbC++20961b2023-12-07 18:03:462023-12-07 18:03:46

Judging History

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

  • [2023-12-07 18:03:46]
  • 评测
  • 测评结果:WA
  • 用时:12ms
  • 内存:25244kb
  • [2023-12-07 18:03:46]
  • 提交

answer

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

int f[200010][6][2];
int n,m,k;
int s[200010],sum[200010];
int getsum(int l,int r){return r-l+1-(sum[r]-sum[l-1]);}
bool check(int l){
  //cout<<l<<endl;
  memset(f,0x3f,sizeof(f));
  f[0][0][0]=f[0][0][1]=0;
  for(int i=1;i<=n;++i){
    for(int j=0;j<=k;++j){
      if(j&&i>=l)f[i][j][1]=f[i-l][j-1][0]+getsum(i-l+1,i);
      if(s[i]==1)f[i][j][1]=min(f[i][j][1],f[i-1][j][1]);
      if(s[i]==0)f[i][j][0]=min(f[i-1][j][0],f[i-1][j][1]);
      //cout<<i<<' '<<j<<' '<<f[i][j][0]<<' '<<f[i][j][1]<<endl;
    }
    if(min(f[i][k][0],f[i][k][1])<=m)return 1;
  }
  return min(f[n][k][0],f[n][k][1])<=m;
}
signed main(){
  cin>>n>>m>>k;
  for(int i=1;i<=n;++i)scanf("%1d",&s[i]),sum[i]=sum[i-1]+s[i];
  if(!check(1)){cout<<-1;return 0;}
  int l=1,r=n;
  while(l<r){
    int mid=r-(r-l>>1);
    if(check(mid))l=mid;
    else r=mid-1;
  }
  cout<<l;
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

8 3 2
10110110

output:

3

result:

ok 1 number(s): "3"

Test #2:

score: 0
Accepted
time: 3ms
memory: 25244kb

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

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

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

score: -100
Wrong Answer
time: 12ms
memory: 24024kb

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

83

result:

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