QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#639501#7880. Streak Manipulationwzl19371WA 0ms3656kbC++201.3kb2024-10-13 20:03:562024-10-13 20:03:57

Judging History

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

  • [2024-10-13 20:03:57]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3656kb
  • [2024-10-13 20:03:56]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
constexpr int maxn = 2e5+10;
int n,m,k,sz[maxn];
// set<int,greater<int>> st;
string s;
int a[maxn];
int count_z(int l, int r) {
    return sz[r] - sz[l-1];
}
bool check(int x) {
    int dp[n+5][6][2];
    memset(dp, 0x3f, sizeof(dp));
    for(int i=1;i<=n;i++) {
        dp[i][0][s[i]-'0'] = 0;
        for(int j=0;j<=k;j++) {
            if(s[i] == '0') {
                dp[i][j][0] = min(dp[i-1][j][0], dp[i-1][j][1]);
            }else{
                dp[i][j][1] = dp[i-1][j][1];
            }
            if(j == 1 && i >= x)
                dp[i][j][1] = min(dp[i][j][1], count_z(1, i));
            if(i-x < 0 || j == 0) continue;
            dp[i][j][1] = min(dp[i][j][1], dp[i-x][j-1][0] + count_z(i-x+1, i));
        }
    }
    return min(dp[n][k][0], dp[n][k][1]) <= m;
}
int main() {
    ios::sync_with_stdio(false);
    cin >> n >> m >> k >> s;
    s = ' ' + s;
    for(int i=1;i<=n;i++) {
        sz[i] = sz[i-1] + (s[i] == '0');
        // if(s[i] == '0')
        //     st.insert(i);
    }
    int l=0,r=n,mid,ans=-1;
    while(l <= r) {
        mid = (l + r) >> 1;
        if(check(mid)) {
            ans = mid;
            l = mid + 1;
        }else{
            r = mid - 1;
        }
    }
        cout << ans << endl;
}

Details

Tip: Click on the bar to expand more detailed information

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: 0ms
memory: 3592kb

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

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

input:

4 4 4
0000

output:

0

result:

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