CodeForces - 702C Cellular Network

來源:互聯網
上載者:User

標籤:rom   sequence   codeforce   points   test   inpu   ecif   logs   ber   

You are given n points on the straight line — the positions (x-coordinates) of the cities and m points on the same line — the positions (x-coordinates) of the cellular towers. All towers work in the same way — they provide cellular network for all cities, which are located at the distance which is no more than r from this tower.

Your task is to find minimal r that each city has been provided by cellular network, i.e. for each city there is at least one cellular tower at the distance which is no more than r.

If r?=?0 then a tower provides cellular network only for the point where it is located. One tower can provide cellular network for any number of cities, but all these cities must be at the distance which is no more than r from this tower.

Input

The first line contains two positive integers n and m (1?≤?n,?m?≤?105) — the number of cities and the number of cellular towers.

The second line contains a sequence of n integers a1,?a2,?...,?an (?-?109?≤?ai?≤?109) — the coordinates of cities. It is allowed that there are any number of cities in the same point. All coordinates ai are given in non-decreasing order.

The third line contains a sequence of m integers b1,?b2,?...,?bm (?-?109?≤?bj?≤?109) — the coordinates of cellular towers. It is allowed that there are any number of towers in the same point. All coordinates bj are given in non-decreasing order.

Output

Print minimal r so that each city will be covered by cellular network.

Example

Input
3 2
-2 2 4
-3 0
Output
4
Input
5 3
1 5 10 14 17
4 11 15
Output
3
貪心,二分都可以,下面是貪心做法。

#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<cmath>using namespace std;int a,b,maxx=0,s;long long aa[100005],bb[100005];int suan(long long x){    while(x>bb[s+1]&&s<b)        s++;    return min(bb[s+1]-x,abs(x-bb[s]));}int main(){    scanf("%d%d",&a,&b);    for(int i=0;i<a;i++)        scanf("%lld",&aa[i]);    for(int i=0;i<b;i++)        scanf("%lld",&bb[i]);    bb[b]=1e18+1;    s=0;    for(int i=0;i<a;i++)        maxx=max(maxx,suan(aa[i]));    printf("%d\n",maxx);        return 0;}

 

CodeForces - 702C Cellular Network

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.