文章

39

粉丝

74

获赞

1

访问

19.0k

头像
字符串 - 22年 题解:c
P1916 清华大学2022年机试题
发布于2024年3月14日 14:55
阅读数 475

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
int main()
{
    char in[10005];
    int n,m;
    scanf("%d%d",&n,&m);
    scanf("%s",&in);
    in[n]='0';
    int count=0;
    int start=0;
    int end=start;
    while(end<=n)
    {
        while(in[end]=='1'&&end<=n)
        {
            end++;
        }
        
        if(end-start==m)count++;
        else if(end-start>m)
        {
            int ans=end-start-m+1;
            while(ans)
            {
                count+=ans;
                ans--;
            }
        }

        start=end+1;
        end=start;


    }
    printf("%d",count);


    return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发