QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#735906 | #7880. Streak Manipulation | yld | WA | 1ms | 3784kb | C++20 | 1.3kb | 2024-11-11 22:35:48 | 2024-11-11 22:35:48 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define endl '\n'
using namespace std;
int dp[200005][10][2];
void solve()
{
int n,m,k;
cin>>n>>m>>k;
string s;cin>>s;
s=' '+s;
vector<int> sum(n+1);
for(int i=1;i<=n;i++)
{
if(s[i]=='0') sum[i]++;
sum[i]+=sum[i-1];
}
// vector<vector<vector<int>>> dp(n+1,vector<vector<int>>(k+1,vector<int>(2,1e18)));
for(int i=0;i<=n;i++)
for(int j=0;j<=k;j++)
dp[i][j][0]=dp[i][j][1]=1e18;
dp[0][0][0]=0;
auto check=[&](int x)
{
for(int i=1;i<=n;i++)
{
for(int j=0;j<=k;j++)
{
if(s[i]=='0') dp[i][j][0]=min(dp[i][j][0],dp[i-1][j][1]);
else dp[i][j][0]=dp[i-1][j][0];
dp[i][j][1]=dp[i-1][j][1];
if(i>=x) dp[i][j][1]=min(dp[i][j][1],dp[i-x][j-1][0]+sum[i]-sum[i-x]);
}
}
if(dp[n][k][1]<=m) return 1;
else return 0;
};
int l=0,r=n+1;
while(l<r)
{
int mid=l+r>>1;
// cerr<<mid<<endl;
if(check(mid)) l=mid+1;
else r=mid;
}
l--;
if(l==0) cout<<-1<<endl;
else cout<<l<<endl;
}
signed main()
{
cin.tie(0)->sync_with_stdio(0);
int t=1;
while(t--) solve();
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3652kb
input:
8 3 2 10110110
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
12 3 3 100100010011
output:
2
result:
ok 1 number(s): "2"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3592kb
input:
4 4 4 0000
output:
-1
result:
ok 1 number(s): "-1"
Test #4:
score: -100
Wrong Answer
time: 0ms
memory: 3784kb
input:
1000 200 5 0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...
output:
124
result:
wrong answer 1st numbers differ - expected: '99', found: '124'