QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#277096 | #7880. Streak Manipulation | Rachel_in# | WA | 1ms | 5816kb | C++14 | 748b | 2023-12-06 15:20:53 | 2023-12-06 15:20:55 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N=2e5+5,inf=0x3f3f3f3f;
int f[N][6][2],n,m,k,sum[N];
bool check(int mid){
for(int i=0;i<=n;i++){
for(int j=0;j<=k;j++) f[i][j][0]=f[i][j][1]=inf;
}
f[0][0][0]=0;
for(int i=1;i<=n;i++){
for(int j=0;j<=k;j++){
if(i>=mid&&j){
int l=i-mid+1,r=i;
f[i][j][1]=f[i-mid][j-1][0]+(r-l+1)-(sum[r]-sum[l-1]);
}
f[i][j][0]=min(f[i-1][j][0],f[i-1][j][1]);
}
}
// cout<<mid<<" "<<f[n][2][0]<<endl;
return min(f[n][k][0],f[n][k][1])<=m;
}
char s[N];
int main(){
scanf("%d%d%d",&n,&m,&k);
scanf("%s",s+1);
for(int i=1;i<=n;i++) sum[i]=sum[i-1]+(s[i]=='1');
int l=1,r=n,ans=-1,mid;
while(l<=r) check(mid=l+r>>1)?l=(ans=mid)+1:r=mid-1;
cout<<ans;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 5592kb
input:
8 3 2 10110110
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
12 3 3 100100010011
output:
2
result:
ok 1 number(s): "2"
Test #3:
score: 0
Accepted
time: 1ms
memory: 5728kb
input:
4 4 4 0000
output:
-1
result:
ok 1 number(s): "-1"
Test #4:
score: 0
Accepted
time: 0ms
memory: 5816kb
input:
1000 200 5 0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...
output:
99
result:
ok 1 number(s): "99"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3776kb
input:
1000 200 5 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...
output:
40
result:
ok 1 number(s): "40"
Test #6:
score: -100
Wrong Answer
time: 0ms
memory: 5728kb
input:
1000 200 5 1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...
output:
199
result:
wrong answer 1st numbers differ - expected: '-1', found: '199'