QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#278719#7880. Streak Manipulationucup-team173#WA 1ms3604kbC++171.5kb2023-12-07 19:35:182023-12-07 19:35:18

Judging History

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

  • [2023-12-07 19:35:18]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3604kb
  • [2023-12-07 19:35:18]
  • 提交

answer

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

#define pb push_back
#define Mp make_pair
#define SZ(x) (int((x).size()))

typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;

constexpr int N = 200100;

int n, m, k, sum[N];
string s; vi p0;
bool chk(int lim) {
    vector<vi> f(n + 1, vi(k + 1, 1e9));
    vi g(k + 1, 1e9);
    f[0][0] = 0;
    int t = 0;
    for(int i = 1; i <= n; i++) if(s[i] == '0') {
        while(t < SZ(p0) && i - lim - 1 >= p0[t]) {
            int p = p0[t];
            for(int j = 0; j <= k; j++) {
                g[j] = min(g[j], f[p][j] - sum[p]);
            }
            t++;
        }
        for(int j = 0; j <= k; j++) {
            if(j) f[i][j] = g[j - 1] + sum[i - 1];
            else f[i][j] = 0;
        }
    }
    while(t < SZ(p0)) f[n][k] = min(f[n][k], f[p0[t]][k]), t++;
    return f[n][k] <= m;
}
void solve() {
    cin >> n >> m >> k >> s;
    s = '0' + s + '0';
    n++;
    for(int i = 0; i <= n; i++)
        if(s[i] == '0') p0.pb(i);
    sum[0] = 1;
    for(int i = 1; i <= n; i++)
        sum[i] = sum[i - 1] + (s[i] == '0');
    
    // chk(1);
    int lo = 1, hi = n, mid;
    while(lo < hi) {
        mid = (lo + hi + 1) / 2;
        if(chk(mid)) lo = mid;
        else hi = mid - 1;
    }
    if(chk(lo)) cout << lo << '\n';
    else cout << "-1\n";
}
signed main() {
    ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
    int t = 1;
    // cin >> t;
    while(t--) solve();
    return 0;
}

详细

Test #1:

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

input:

8 3 2
10110110

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

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

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

score: -100
Wrong Answer
time: 1ms
memory: 3604kb

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

89

result:

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