QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#278522#7880. Streak ManipulationjchhhWA 4ms19288kbC++141.2kb2023-12-07 16:55:502023-12-07 16:55:51

Judging History

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

  • [2023-12-07 16:55:51]
  • 评测
  • 测评结果:WA
  • 用时:4ms
  • 内存:19288kb
  • [2023-12-07 16:55:50]
  • 提交

answer

#include<bits/stdc++.h>

#define int long long
using namespace std;
typedef pair<int,int> PII;
const int N = 200010;
char a[N];
int s[N];
int n,m,k;

bool check(int x)
{
    int ans = 1e9;
    int f[N][5][2];
    memset(f,0x3f,sizeof f);
    f[0][0][0] = 0;
    for(int i = 1;i <= n;i++)
    {
        for(int j = 1;j <= k;j++)
        {
            f[i][j][0] = min(f[i - 1][j][0],f[i - 1][j][1]);
            if(i >= x && a[i - x] == '0') f[i][j][1] = min(f[i - x][j - 1][0],f[i - x][j - 1][1]) + s[i] - s[i - x];
            if(j == k) ans = min({ans,f[i][k][0]});
        }
    }
    return ans <= m;
}

void solve()
{
    
    cin >> n >> m >> k;
    cin >> a + 1;
    a[0] = '0';
    for(int i = 1;i <= n;i++) 
    {
        s[i] = s[i - 1];
        if(a[i] == '0') s[i]++;
    }
    
   
    
    int l = 0, r = n;
    while(l < r)
    {
        int mid = l + r + 1 >> 1;
        if(check(mid)) l = mid;
        else r = mid - 1;
    }
    if(l == 0) l--;
    cout << l << endl;
    
    
}



signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    
    int T = 1;
    //cin >> T;

    while(T--)
    {
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 4ms
memory: 19288kb

input:

8 3 2
10110110

output:

2

result:

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