前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Code Forces 645C Enduring Exodus

Code Forces 645C Enduring Exodus

作者头像
ShenduCC
发布2018-04-26 16:31:08
5300
发布2018-04-26 16:31:08
举报
文章被收录于专栏:算法修养算法修养

C. Enduring Exodus time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output In an attempt to escape the Mischievous Mess Makers’ antics, Farmer John has abandoned his farm and is traveling to the other side of Bovinia. During the journey, he and his k cows have decided to stay at the luxurious Grand Moo-dapest Hotel. The hotel consists of n rooms located in a row, some of which are occupied.

Farmer John wants to book a set of k + 1 currently unoccupied rooms for him and his cows. He wants his cows to stay as safe as possible, so he wishes to minimize the maximum distance from his room to the room of his cow. The distance between rooms i and j is defined as |j - i|. Help Farmer John protect his cows by calculating this minimum possible distance.

Input The first line of the input contains two integers n and k (1 ≤ k < n ≤ 100 000) — the number of rooms in the hotel and the number of cows travelling with Farmer John.

The second line contains a string of length n describing the rooms. The i-th character of the string will be ‘0’ if the i-th room is free, and ‘1’ if the i-th room is occupied. It is guaranteed that at least k + 1 characters of this string are ‘0’, so there exists at least one possible choice of k + 1 rooms for Farmer John and his cows to stay in.

Output Print the minimum possible distance between Farmer John’s room and his farthest cow.

Examples input 7 2 0100100 output 2 input 5 1 01010 output 2 input 3 2 000 output 1

先枚举人的位置,然后二分枚举人两侧的距离长度,

代码语言:javascript
复制
#include <iostream>
#include <string.h>
#include <stdlib.h>
#include <algorithm>
#include <stdio.h>
#include <math.h>


using namespace std;
#define MAX 100000
char b[MAX+5];
int s[MAX+5];
int n,k;
int main()
{
    scanf("%d%d",&n,&k);
    scanf("%s",b+1);
    s[0]=0;
    for(int i=1;i<=n;i++)
        s[i]=s[i-1]+(b[i]=='0'?1:0);
    int ans=MAX*10;
    for(int i=1;i<=n;i++)
    {
        if(b[i]=='1')
            continue;
        int l=1,r=n;
        while(l<r)
        {
            int mid=(l+r)/2;
            int ml=max(1,i-mid);
            int mr=min(n,i+mid);
            if(s[mr]-s[ml-1]-1>=k)
                r=mid;
            else
                l=mid+1;
        }
        ans=min(ans,l);
    }
    printf("%d\n",ans);
    return 0;
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-04-20 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档