codeforce-Enduring Exodus(二分真好用)

Enduring Exodus

戳一戳-》原题链接

原题

B. 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
Note
In the first sample, Farmer John can book room 3 for himself, and rooms 1 and 4 for his cows. The distance to the farthest cow is 2. Note that it is impossible to make this distance 1, as there is no block of three consecutive unoccupied rooms.

In the second sample, Farmer John can book room 1 for himself and room 3 for his single cow. The distance between him and his cow is 2.

In the third sample, Farmer John books all three available rooms, taking the middle room for himself so that both cows are next to him. His distance from the farthest cow is 1.

题意:

就是说一个人有k头牛,需要住有n个房间的宾馆(这个宾馆为一行排列),一头牛住一间,一个人住一间,给你一个字符串,1表示该房间已经有人住,0表示空房间。怎样住可以让那个人离牛的最远距离最短,求出该最短距离。

思路:

由于最短距离这个关键字眼,很多巨巨看了都会会心一笑,二分就完了,(巨巨NB,orz)。没错就是二分,先用一个数组存一下前缀零的个数,然后枚举人的房间位置,然后二分查找合适区间,并不断对答案进行更新,取答案的最小值,然后输出。(完事,哇好开心啊,又水了一道题,来自蒟蒻的自嗨)

代码:

#include<bits/stdc++.h>
using namespace std;
const int maxn=1e5+7;
char s[maxn];
int n,k,sum[maxn];
int check(int p,int dis)///二分中的判断函数
{
    int ll=max(1,p-dis);
    int rr=min(n,p+dis);
    return (sum[rr]-sum[ll-1])>=k+1;///如果当前0的个数不大于k+1,那么范围需要l(不是此处的ll)增大到mid+1,反之r更新到mid
}
int main()
{
scanf("%d%d",&n,&k);
scanf("%s",s+1);
for(int i=1;i<=n;i++)
    sum[i]=sum[i-1]+(s[i]=='0');///存储一下零的个数用来对区间二分。
int ans=n;
for(int i=1;i<=n;i++)
{
    if(s[i]=='0')
    {
        int l=1;
        int r=n;
        while(l<r)
        {
            int mid=(l+r)>>1;///除二(这样写更快一点啊)
            if(check(i,mid))
                r=mid;
            else
                l=mid+1;
        }
        ans=min(ans,l);///更新答案
    }

}
printf("%d\n",ans);
}

推荐(二分板子题):

落谷-p1577切绳子

AC代码(二分板子):
//洛谷p1577
//运用二分暴力(一位一位的尝试测试样例只跑了26次(可见二分的优秀))找出答案
//精度问题可以直接乘使它变成整数。
#include<bits/stdc++.h>
using namespace std;
#define LL long long
const int maxn=1e5+7;
int arr[maxn];
int n;
int k;
bool judge(int x)
{
    int sum=0;
    for(int i=0;i<n;i++)
    {
        sum+=arr[i]/x;
    }
    if(sum>=k)
        return 1;
    else
        return 0;
}
int main()
{
    scanf("%d%d",&n,&k);
    double temp;
    for(int i=0;i<n;i++)
    {
        scanf("%lf",&temp);
        arr[i]=(int)(temp*100);//(int)temp*100!=(int)(temp*100);优先级不一样
    }
    int l=0,r=1e8;
    while(l<=r)
    {
        int mid=l+((r-l))/2;//防止爆数组;
        if(!mid)//l=0,r=0 防止死循环
            break;
            cnt++;
        if(judge(mid))
        {
            l=mid+1;
        }
        else
        {
            r=mid-1;
        }
    }
    printf("%.2f",r/100.0);
    return 0;
}

总结:

(看博主这么辛苦,不放点个赞呗)
二分的用处非常广泛,一个非常漂亮的算法,自我感觉如果涉及到最大值最小值,或者保留到某一精度问题,都不妨往二分想想,有时候会有意想不到的收获。

告诫:

能控制住自己的人才能控制未来。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Key Features The problems of CSS at scale - specificity, the cascade and styles intrinsically tied to element structure. The shortfalls of conventional approaches to scaling CSS. The ECSS methodology and the problems it solves. How to develop consistent and enforceable selector naming conventions with ECSS. How to organise project structure to more easily isolate and decouple visual components. Considerations of CSS tooling and processing: Sass/PostCSS and linting. Addressing the notion of CSS selector speed with hard data and browser representative insight. Book Description Learn with me, Ben Frain, about how to really THINK about CSS and how to use CSS for any size project! I'll show you how to write CSS that endures continual iteration, multiple authors, and yet always produces predictable results. Enduring CSS, often referred to as ECSS, offers you a robust and proven approach to authoring and maintaining style sheets at scale. Enduring CSS is not a book about writing CSS, as in the stuff inside the curly braces. This is a book showing you how to think about CSS, and be a smarter developer with that thinking! It's about the organisation and architecture of CSS: the parts outside the braces. I will help you think about the aspects of CSS development that become the most difficult part of writing CSS in larger projects. You ll learn about the problems of authoring CSS at scale - including specificity, the cascade and styles intrinsically tied to document structure. I'll introduce you to the ECSS methodology, and show you how to develop consistent and enforceable selector naming conventions. We'll cover how to apply ECSS to your web applications and visual models. And how you can organise your project structure wisely, and handle visual state changes with ARIA, providing greater accessibility considerations. In addition, we'll take a deep look into CSS tooling and process considerations. Finally we will address performance considerations by examining topics such as CSS selector speed with hard data and browser-representative insight. Enduring CSS is a book for considering how to write CSS in the most effective manner, and how you too can create an enduring CSS code base, regardless of project size. Take a journey with me if you want to explore these topics and deepen your thinking as a CSS author.

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值