其他分享
首页 > 其他分享> > P2678 [NOIP2015 提高组] 跳石头[普及/提高-]

P2678 [NOIP2015 提高组] 跳石头[普及/提高-]

作者:互联网

https://www.luogu.com.cn/problem/P2678
涉及知识点:贪心,二分
黄色题
  思路: 从起点出发,先选定一段距离mid,若前面的石头B与你所站着的石头A的距离小于mid,就把B搬掉,记录一下;如果不,就把B留下,再跳到石头B上。照这个步骤多次循环后,如果搬掉的石头多了,就把距离mid定小点;如果少了,就把mid定大点。   代码:
#include<cstdio>
#include<algorithm>
#define N (50000+10) 
using namespace std;
int a[N];
int d,n,m,ans;
bool judge(int x){//二分推荐写judge,比较规范比较标准,容易检查
    int tot=0,i=0,now=0;//tot表示需要搬走的石块数量,i表示找的石头,now表示我站在哪一块石头上
    while (i<n+1){河中间有n块石头,显然终点在n+1处。
        i++;
        if (a[i]-a[now]<x){//如果距离小于我二分的答案x,那么这块石头需要搬走
            tot++;
        } 
        else{
            now=i;//不然我就跳过来
        }
    }
    if (tot>m) return false;//如果要搬走的石头多于m块,那么这个解太大了
    else return true;
}
int main(){
    scanf("%d%d%d",&d,&n,&m);
    for (int i=1;i<=n;i++) scanf("%d",&a[i]);
    a[n+1]=d; 
    int l=1,r=d,mid;
    while (l<=r){//可以说算是二分的格式吧
        mid=(l+r)/2;
        if (judge(mid)){
            ans=mid;
            l=mid+1;
        } 
        else r=mid-1;
    }
    printf("%d",ans);
}

 

标签:NOIP2015,P2678,提高,d%,mid,tot,石头,int,搬掉
来源: https://www.cnblogs.com/2elaina/p/16460583.html