QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#599822#7880. Streak ManipulationAkoasm_XWA 6ms13588kbC++201.7kb2024-09-29 11:25:092024-09-29 11:25:10

Judging History

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

  • [2024-09-29 11:25:10]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:13588kb
  • [2024-09-29 11:25:09]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define mp make_pair
#define pb push_back
typedef long long LL;

inline int read(){
	int x = 0 , f = 1 ; char c = getchar() ;
    while( c < '0' || c > '9' ) { if( c == '-' ) f = -1 ; c = getchar() ; } 
    while( c >= '0' && c <= '9' ) { x = x * 10 + c - '0' ; c = getchar() ; } 
    return x * f ;
}

const int maxn = 2e5+20;
int n,m,k;
int s[maxn];
char S[maxn];
int f[maxn][6][2];

bool judge(int l){
    memset(f,0x3f,sizeof(f));
    f[0][0][0] = 0;
    for(int i=1;i<=n;i++){
        for(int j=0;j<=k;j++){
            if(S[i]=='1'){
                f[i][j][1] = min(f[i][j][1],f[i-1][j][0]);
                f[i][j][1] = min(f[i][j][1],f[i-1][j][1]);
            }
            else{
                f[i][j][1] = min(f[i][j][1],f[i-1][j][0]);
                f[i][j][1] = min(f[i][j][1],f[i-1][j][1]);
                f[i][j][0] = min(f[i][j][0],f[i-1][j][0]);
                f[i][j][0] = min(f[i][j][0],f[i-1][j][1]);
            }
            if(j >= 1 && i >= l){
                f[i][j][1] = min(f[i][j][1],f[i-l][j-1][0] + l - s[i] + s[i-l]);
            }
        }
    }
    return (f[n][k][0],f[n][k][1]) <= m;
}

void solve(){
    n = read();m = read();k = read();
    scanf("%s",S+1);
    for(int i=1;i<=n;i++) S[i] -= '0';
    for(int i=1;i<=n;i++) s[i] = s[i-1] + S[i];
    if(!judge(1)) puts("-1");
    else{
        int L = 1,R = n;
        while(L<R){
            int mid = ((L+R+1)>>1);
            if(judge(mid)) L = mid;
            else R = mid - 1;
        }
        printf("%d\n",L);
    }
}

int main(){
	// freopen("1.txt","r",stdin);
	int T = 1;
	// T = read();
	while(T--) solve();
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 4ms
memory: 13096kb

input:

8 3 2
10110110

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

12 3 3
100100010011

output:

2

result:

ok 1 number(s): "2"

Test #3:

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

input:

4 4 4
0000

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

score: 0
Accepted
time: 6ms
memory: 13588kb

input:

1000 200 5
0001001000101001110010011001101010110101101100010100111110111111010010001100100111100101011100011101011001110010111100100100011001010011000100011111010110100001101110101001110000001000111010000111110100111101100110011010011111000111101001010011000111010111010100101111100000100001011001010...

output:

99

result:

ok 1 number(s): "99"

Test #5:

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

input:

1000 200 5
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

40

result:

ok 1 number(s): "40"

Test #6:

score: -100
Wrong Answer
time: 2ms
memory: 13308kb

input:

1000 200 5
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:

199

result:

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