CodeForces 343C Read Time 二分+贪心

链接


题意:

给出n个磁头,每个磁头在某个轨道上的某个位置,现在要读取m个位置的信息,每一单位时间,一个磁头只能变换到相邻的轨道,问最短时间。


解:

轨道的编号从 [1,1010] ,n和m数量为 105 。磁头相遇或者是交错没有任何意义。所以磁头的相对位置不变。对最短时间进行二分,然后贪心判断能否在规定时间内完成任务即可。对于一个磁头,尽量向右扫描更多的位置。

#include<cstdio>
#include<string>
#include<cstring>
#include<iostream>
#include<cmath>
#include<algorithm>
#include<vector>
using namespace std;

#define all(x) (x).begin(), (x).end()
#define for0(a, n) for (int (a) = 0; (a) < (n); (a)++)
#define for1(a, n) for (int (a) = 1; (a) <= (n); (a)++)
#define mes(a,x,s)  memset(a,x,(s)*sizeof a[0])
#define mem(a,x)  memset(a,x,sizeof a)
#define ysk(x)  (1<<(x))
typedef long long ll;
typedef pair<int, int> pii;
const int INF =0x3f3f3f3f;
const int maxn= 100000   ;
int n,m;
ll a[maxn+10],b[maxn+10];


ll getUp()
{
    ll ret;
    if(b[0]<a[0]&&a[0]<b[m-1])
    {
        ret=2*(a[0]-b[0])+b[m-1]-a[0];
    }
    else if(b[m-1]<=a[0])
    {
        ret=a[0]-b[0];
    }
    else
    {
       ret=b[m-1]-a[0];
    }
    return ret;
}


bool ok(ll le, ll ri,ll p,ll x)
{
    ll ans=0;
    if(ri<=p)
    {
        ans=p-le;
    }
    else if(le>=p)
    {
        ans=ri-p;
    }
    else
    {
        ans=min( ri-le+ri-p,ri-le+p-le    );

    }
    return ans<=x;
}

bool check(ll x)
{
    int nex=0;
    int use=0;
    while(nex<m)
    {
        if(use==n)   return false;
        int st=nex;
        while(nex<m&& ok(b[st],b[nex],a[use],x) )  nex++;
        use++;
    }
    return true;
}


ll solve(ll le,ll ri)
{
    while(le<=ri)
    {
       ll mid=(le+ri)>>1;
       if(check(mid))   ri=mid-1;
       else le=mid+1;
    }
    return le;
}
int main()
{
   std::ios::sync_with_stdio(false);
   while(cin>>n>>m)
   {
       for0(i,n) cin>>a[i];
       for0(i,m) cin>>b[i];
       sort(a,a+n);
       sort(b,b+m);
       ll up=getUp();
       cout<<solve(0,up)<<endl;
   }
   return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值