QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#271647#7880. Streak Manipulationucup-team1321#WA 1ms5708kbC++201.4kb2023-12-02 13:44:142023-12-02 13:44:15

Judging History

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

  • [2023-12-02 13:44:15]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:5708kb
  • [2023-12-02 13:44:14]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

int n, M, k;
const int N = 2e5 + 5;
char s[N];
int sum[N];
int f[N][6];
const int inf = 1e9;
int pre[N];
bool check(int x) {
    for (int i = 0; i <= n; i++) for (int j = 1; j <= k; j++) f[i][j] = inf;
    for (int i = x + 1; i < n; i++) {
        int ii = pre[i - x - 1];
        if (i == ii + 1) continue; 
        if (s[i] == '0') {
            int cost = sum[i] - sum[ii + 1];
            for (int j = 1; j <= k; j++) {
                f[i][j] = min(f[i][j], f[ii][j - 1] + cost);
            }
        }
    }
//    cout << x << " " << f[n - 1][k] << "\n";
    return f[n - 1][k] <= M;
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> n >> M >> k;
    s[0] = '0';
    for (int i = 1; i <= n; i++) cin >> s[i];
    s[n + 1] = '0';
    n += 2;
//    cout << s << "\n";
    for (int i = 0; i < n; i++) {
        if (s[i] == '0') {
            pre[i] = i;
        } else {
            pre[i] = pre[i - 1];
        }
    }
//    cout << n << "\n";
//    for (int i = 0; i < n; i++) {
//        cout << i << " " << pre[i] << "\n";
//    }
    for (int i = 0; i < n; i++) sum[i + 1] = sum[i] + (s[i] == '0');
    int l = -1, r = n + 1;
    while (r - l > 1) {
        int m = (l + r) / 2;
        if (check(m)) {
            l = m;
        } else {
            r = m;
        }
    }
    cout << l << "\n";
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 1ms
memory: 5708kb

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

84

result:

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