QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#622838#7880. Streak ManipulationwpoemWA 1ms3892kbC++201.3kb2024-10-09 06:41:312024-10-09 06:41:32

Judging History

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

  • [2024-10-09 06:41:32]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3892kb
  • [2024-10-09 06:41:31]
  • 提交

answer

#include<bits/stdc++.h>

#ifndef ONLINE_JUDGE
#include "debug.h"
#else
#define debug(...) 42
#endif

using i64 = long long;

namespace ranges = std::ranges;

constexpr int OP = 1E9;

void solve()
{
    int n, m, k; std::cin >> n >> m >> k;
    std::string s; std::cin >> s; s = " " + s; std::vector<int> pre(n + 1); for (int i = 1; i <= n; i++) {pre[i] = pre[i - 1] + (s[i] == '0');}

    auto chmin = [&](auto& a, auto b) {a = std::min(a, b);};

    auto check = [&](int& len) {
        if (len == 0) {return false;}
        std::vector dp(n + 1, std::array<std::array<int, 2>, 6>()); for (auto& dpi : dp) for (auto& dpij : dpi) {ranges::fill(dpij, OP);}
        dp[0][0][0] = 0;
        for (int i = 1; i <= n; i++) for (int j = 0; j <= k; j++) {
            if (i >= len and j >= 1) {chmin(dp[i][j][1], dp[i - len][j - 1][0] + pre[i] - pre[i - len]);}
            chmin(dp[i][j][0], std::min(dp[i - 1][j][1], dp[i - 1][j][0]));
        }
        return ranges::min(dp[n][k]) <= m;
    };

    int lo{}, hi{n}; while (lo <= hi) {int mid{lo + hi >> 1}; check(mid) ? lo = mid + 1 : hi = mid - 1;}
    std::cout << lo - 1 << "\n";
}

signed main()
{
   std::cin.tie(nullptr)->sync_with_stdio(false);
   int _(1);
#ifdef tests
   std::cin >> _;
#endif
   while(_--) solve();
   return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3576kb

input:

8 3 2
10110110

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

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

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

99

result:

ok 1 number(s): "99"

Test #5:

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

input:

1000 200 5
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

40

result:

ok 1 number(s): "40"

Test #6:

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

input:

1000 200 5
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:

199

result:

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