CF185E.Soap Time! - 2

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Imagine the Cartesian coordinate system. There are kk different points containing subway stations. One can get from any subway station to any one instantly. That is, the duration of the transfer between any two subway stations can be considered equal to zero. You are allowed to travel only between subway stations, that is, you are not allowed to leave the subway somewhere in the middle of your path, in-between the stations.

There are nn dwarves, they are represented by their coordinates on the plane. The dwarves want to come together and watch a soap opera at some integer point on the plane. For that, they choose the gathering point and start moving towards it simultaneously. In one second a dwarf can move from point (x,y)(x,y) to one of the following points: (x1,y)(x-1,y) , (x+1,y)(x+1,y) , (x,y1)(x,y-1) , (x,y+1)(x,y+1) . Besides, the dwarves can use the subway as many times as they want (the subway transfers the dwarves instantly). The dwarves do not interfere with each other as they move (that is, the dwarves move simultaneously and independently from each other).

Help the dwarves and find the minimum time they need to gather at one point.

输入格式

The first line contains two integers nn and kk (1<=n<=105; 0<=k<=105)(1<=n<=10^{5}; 0<=k<=10^{5}) — the number of dwarves and the number of subway stations, correspondingly.

The next nn lines contain the coordinates of the dwarves. The ii -th line contains two space-separated integers xix_{i} and yiy_{i} ( xi,yi<=108|x_{i}|,|y_{i}|<=10^{8} ) — the coordinates of the ii -th dwarf. It is guaranteed that all dwarves are located at different points.

The next kk lines contain the coordinates of the subway stations. The tt -th line contains two space-separated integers xtx_{t} and yty_{t} ( xt,yt<=108|x_{t}|,|y_{t}|<=10^{8} ) — the coordinates of the tt -th subway station. It is guaranteed that all subway stations are located at different points.

输出格式

Print a single number — the minimum time, in which all dwarves can gather together at one point to watch the soap.

输入输出样例

  • 输入#1

    1 0
    2 -2
    

    输出#1

    0
    
  • 输入#2

    2 2
    5 -3
    -4 -5
    -4 0
    -3 -2
    

    输出#2

    6
    
首页