QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#278588#7880. Streak Manipulationucup-team073#WA 12ms25340kbC++20823b2023-12-07 17:50:572023-12-07 17:50:58

Judging History

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

  • [2023-12-07 17:50:58]
  • 评测
  • 测评结果:WA
  • 用时:12ms
  • 内存:25340kb
  • [2023-12-07 17:50:57]
  • 提交

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){
  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);
      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;
    }
  }
  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;
}

詳細信息

Test #1:

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

input:

8 3 2
10110110

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

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

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

score: 0
Accepted
time: 10ms
memory: 25228kb

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

99

result:

ok 1 number(s): "99"

Test #5:

score: 0
Accepted
time: 12ms
memory: 23808kb

input:

1000 200 5
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

40

result:

ok 1 number(s): "40"

Test #6:

score: -100
Wrong Answer
time: 8ms
memory: 24464kb

input:

1000 200 5
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:

199

result:

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