QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#612226#7880. Streak Manipulationsw7777WA 1ms5748kbC++171.4kb2024-10-05 09:35:442024-10-05 09:35:45

Judging History

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

  • [2024-10-05 09:35:45]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:5748kb
  • [2024-10-05 09:35:44]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define inf 0x3f3f3f3f
#define int long long
int n,m,k,id=1;
string s;
const int N=2e5+10;
int dp[N][6][2];
int pre[N];
bool check(int x){
    for(int i=0;i<=n;i++){
        for(int j=0;j<=k;j++){
            dp[i][j][0]=dp[i][j][1]=inf;
        }
    }
    dp[0][0][0]=0;
    int p=0;
    for(int i=1;i<=n;i++){
        if(i-x>=1&&s[i-x]=='0') p=i-x;
        for(int j=0;j<=5;j++){
            dp[i][j][0]=min(dp[i-1][j][0],dp[i-1][j][1]);
            if(j>=1&&i>=x) dp[i][j][1]=min(dp[i][j][1],dp[p][j-1][0]+pre[i]-pre[p]);
        }
    }                 
    int cost=inf;
    cost=min(dp[n][k][1],dp[n][k][0]);
    // if(cost<=m) cout<<x<<" pass "<<cost<<endl;
    return cost<=m;
}

signed main (){
    ios::sync_with_stdio(false);
    cin.tie(0);cout.tie(0);
    cin>>n>>m>>k>>s;
    s=" "+s;
    int cnt=0;
    for(int i=1;i<=n;i++){
        if(s[i]=='0') pre[i]=pre[i-1]+1;
        else{
            if(s[i-1]=='0') cnt++;
            pre[i]=pre[i-1];
        }
    }
    if(s.back()=='1') cnt++;
    // cout<<cnt<<endl;
    if(cnt<k){
        cout<<-1<<endl;
        return 0;
    }
    int l = 1, r = n;
    while(l < r){
        int mid = l + r + 1 >> 1;
        if(check(mid)) l = mid;
        else r = mid - 1;
    }
    //cout << check(r) << "\n";
    if(!check(r)) cout << -1 << "\n";
    else cout << r << "\n";
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5672kb

input:

8 3 2
10110110

output:

3

result:

ok 1 number(s): "3"

Test #2:

score: 0
Accepted
time: 1ms
memory: 5672kb

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

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

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

score: 0
Accepted
time: 1ms
memory: 5748kb

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

99

result:

ok 1 number(s): "99"

Test #5:

score: -100
Wrong Answer
time: 0ms
memory: 3836kb

input:

1000 200 5
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

-1

result:

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