Codeforces Round #200 (Div. 2)344E Read Time(二分)

来源:互联网 发布:编程软件下载 编辑:程序博客网 时间:2024/05/29 13:52

E. Read Time
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 h1h2...hn have been read at the beginning of the operation.

Mike needs to read the data on m distinct tracks with numbers p1p2...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 nm (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 ≤ 1010hi < hi + 1) — the initial positions of the heads. The third line contains m distinct integers pi in ascending order (1 ≤ pi ≤ 1010pi < 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 cincout streams or the%I64d specifier.

Output

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

Sample test(s)
input
3 42 5 61 3 6 8
output
2
input
3 31 2 31 2 3
output
0
input
1 2165142 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:

  1. during the first second move the 1-st head to the left and let it stay there;
  2. move the second head to the left twice;
  3. 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.



有n个磁头,m个位置需要访问,磁头每一秒移动一格,求访问m个磁头需要的最少时间。二分寻找答案。


AC代码:


#include "iostream"#include "cstdio"#include "cstring"#include "algorithm"using namespace std;const int MAXN = 1e5 + 5;typedef long long ll;int n, m;ll a[MAXN], b[MAXN];bool judge(ll x){int cur = 1;ll y;for(int i = 1; i <= n; ++i) {if(abs(a[i] - b[cur]) > x) continue;if(a[i] == b[cur]) cur++;if(a[i] > b[cur]) y = max(a[i] + x - 2 * (a[i] - b[cur]), a[i] + (x - (a[i] - b[cur])) / 2);else y = a[i] + x;while(b[cur] <= y && cur <= m) cur++;}return cur > m;}int main(int argc, char const *argv[]){cin >> n >> m;for(int i = 1; i <= n; ++i)cin >> a[i];for(int i = 1; i <= m; ++i)cin >> b[i];ll l = -1, r = abs(a[1] - b[1]) * 2 + abs(a[1] - b[m]), mid;while(l + 1 < r) {mid = (l + r) >> 1;if(judge(mid)) r = mid;else l = mid;}cout << r << endl;return 0;}


1 0
原创粉丝点击