CodeForces-343C Read Time

Mad scientist Mike does not use slow hard disks. His modification of a hard drive has not one, but n different heads that can read data in parallel.
When viewed from the side, Mike’s hard drive is an endless array of tracks. The tracks of the array are numbered from left to right with integers, starting with 1. In the initial state the i-th reading head is above the track number hi. For each of the reading heads, the hard drive’s firmware can move the head exactly one track to the right or to the left, or leave it on the current track. During the operation each head’s movement does not affect the movement of the other heads: the heads can change their relative order; there can be multiple reading heads above any of the tracks. A track is considered read if at least one head has visited this track. In particular, all of the tracks numbered h1, h2, …, hn have been read at the beginning of the operation.

在这里插入图片描述
Mike needs to read the data on m distinct tracks with numbers p1, p2, …, pm. Determine the minimum time the hard drive firmware needs to move the heads and read all the given tracks. Note that an arbitrary number of other tracks can also be read.

Input
The first line of the input contains two space-separated integers n, m (1 ≤ n, m ≤ 105) — the number of disk heads and the number of tracks to read, accordingly. The second line contains n distinct integers hi in ascending order (1 ≤ hi ≤ 1010, hi < hi + 1) — the initial positions of the heads. The third line contains m distinct integers pi in ascending order (1 ≤ pi ≤ 1010, pi < pi + 1) - the numbers of tracks to read.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is recommended to use the cin, cout streams or the %I64d specifier.

Output
Print a single number — the minimum time required, in seconds, to read all the needed tracks.

Examples
Input
3 4
2 5 6
1 3 6 8

Output
2

Input
3 3
1 2 3
1 2 3

Output
0

Input
1 2
165
142 200

Output
81

Note
The first test coincides with the figure. In this case the given tracks can be read in 2 seconds in the following way:
during the first second move the 1-st head to the left and let it stay there;
move the second head to the left twice;
move the third head to the right twice (note that the 6-th track has already been read at the beginning).
One cannot read the tracks in 1 second as the 3-rd head is at distance 2 from the 8-th track.

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const int maxn = 1e5+10;
LL h[maxn],p[maxn];
bool vis[maxn];
int N,M;
bool check(LL limit)
{
    int pt = 1,j;
    memset(vis,0,sizeof(vis));
    for(int i=1;i<=N;++i){
        LL dist;
        if(p[pt]>h[i]){
            dist = h[i]+limit;
        }
        else{
            if(limit< h[i]-p[pt]) break;
            dist = max(limit+2*p[pt]-h[i],h[i]+(limit-h[i]+p[pt])/2);
        }
        for(j=pt;p[j]<=dist && j<=M ;++j){
            vis[j] =true;
        }
        if(vis[M]) return true;
        pt = j;
    }
    if(vis[M]) return true;
    else return false;
}
int main(){
    while(scanf("%d %d",&N,&M)==2){
        for(int i=1;i<=N;++i){
            scanf("%I64d",&h[i]);
        }
        for(int i=1;i<=M;++i){
            scanf("%I64d",&p[i]);
        }
        LL L=0,R,mid;
        if(h[1]<p[1]){
            R = p[M]-h[1];
        }
        else{
            R = h[1] - p[1];
            if(h[1]<p[M]){
                R = min(R*2+p[M]-h[1],R+2*(p[M]-h[1]));
            }
        }
        LL ans=0;
        while(L<=R){
            mid = (L+R)>>1;
            if(check(mid)){
                R = mid-1;
                ans = mid;
            }
            else{
                L = mid+1;
            }
        }
        cout<<ans<<endl;
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值