洛谷二分答案

这篇博客主要介绍了洛谷平台上的二分答案解题策略,详细解析了包括P1316 丢瓶盖、P1396 营救、P2920 时间管理等题目,并提供了用时和内存消耗的数据。在P1902 刺杀大使的解题中,特别讨论了手写队列和STL的实现,对比了它们的运行效率。
摘要由CSDN通过智能技术生成

洛谷二分答案

目前难度:普及+/提高-
详解见二分答案


目录


P1316 丢瓶盖

  • 用时: 264ms / 内存: 2968KB
#include <cstdio>
#include <iostream>
#include <cstring>
#include <algorithm>
#define L long long
using namespace std;
int n,m;
L a[100001];
L read()
{
    char c=getchar();
    L t=0;
    while(c>'9'||c<'0') c=getchar();
    while(!(c>'9'||c<'0'))
        t=(t<<3)+(t<<1)+c-'0',c=getchar();
    return t;
}
bool ju(int s)
{
    int t=1,c=1;
    for(int i=2;i<=n;++i)
    {
        if(a[i]-a[t]>=s) {++c;t=i;}
        if(c==m) return 1;
    }
    return 0;
}
int main()
{
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;++i)
        a[i]=read();
    sort(a+1,a+1+n);
    L l=0,r=1000000000;
    while(l<=r)
    {
        int mid=l+r>>1;
        if(ju(mid))
            l=mid+1;
        else
            r=mid-1;
    }
    cout<<l-1;
    return 0;
}

P1396 营救

  • 用时: 12ms / 内存: 2554KB
#include <cstdio>
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
int n,m,s,e,ro;
int f[40005];
struct $
{
    int ne,c,t;
}a[40005];
void road(int x,int y,int c)
{
    a[++ro].t=y;
    a[ro].c=c;
    a[ro].ne=f[x];
    f[x]=ro;
}
bool ju(int z)
{
    int q[20002]={0};//哈哈哈哈哈
    bool v[10001]=
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值