QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#594242 | #7880. Streak Manipulation | idontknow233 | WA | 7ms | 13964kb | C++20 | 1.1kb | 2024-09-27 20:33:17 | 2024-09-27 20:33:19 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
#define endl '\n'
using namespace std;
const int N=2e5+5;
int n,m,k,f[N][6],b[N];
string s;
bool judge(int x)
{
memset(f,0x3f,sizeof f);
f[0][0]=0;
for(int i=x;i<=n;i++)
{
for(int j=1;j<=k;j++) f[i][j]=f[i-1][j];
for(int j=1;j<=k;j++)
{
// if(i<(x+1)*j-1) continue;
if(s[i-x]=='1') continue;//if(i==8&&x==3)cout<<"*";
if(i==x)
f[i][j]=min(f[i-x][j-1]+b[i]-b[i-x],f[i][j]);
else if(i-x-1>=0)
{
f[i][j]=min(f[i-x-1][j-1]+b[i]-b[i-x],f[i][j]);
}
}
}
return f[n][k]<=m;
}
void solve()
{
cin>>n>>m>>k>>s;
s="0"+s;
int l=1,r=n,mid,ans=-1;
for(int i=1;i<=n;i++) b[i]=b[i-1]+(s[i]=='0');
// for(int i=1;i<=n;i++) cout<<b[i]<<" ";cout<<endl;
while(l<=r)
{
mid=(l+r)/2;
if(judge(mid)) l=mid+1,ans=max(ans,mid);
else r=mid-1;
}
// judge(3);
// for(int i=0;i<=n;i++)
// {
// for(int j=0;j<=k;j++) cout<<f[i][j]<<" ";
// cout<<endl;
// }
cout<<ans<<endl;
}
signed main()
{
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
int T=1;
// cin>>T;
while(T--) solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 13572kb
input:
8 3 2 10110110
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 3ms
memory: 12904kb
input:
12 3 3 100100010011
output:
2
result:
ok 1 number(s): "2"
Test #3:
score: 0
Accepted
time: 0ms
memory: 13700kb
input:
4 4 4 0000
output:
-1
result:
ok 1 number(s): "-1"
Test #4:
score: -100
Wrong Answer
time: 7ms
memory: 13964kb
input:
1000 200 5 0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...
output:
97
result:
wrong answer 1st numbers differ - expected: '99', found: '97'