(CodeForces) B. New York Hotel

0

// link: http://codeforces.com/contest/491/problem/B

/****************************************************************
   ▄█    █▄       ▄████████    ▄████████  ▄█  ▀█████████▄
  ███    ███     ███    ███   ███    ███ ███    ███    ███
  ███    ███     ███    ███   ███    █▀  ███   ███    ███
 ▄███▄▄▄▄███▄▄   ███    ███   ███        ███  ▄███▄▄▄██▀
▀▀███▀▀▀▀███▀  ▀███████████ ▀███████████ ███ ▀▀███▀▀▀██▄
  ███    ███     ███    ███          ███ ███    ███    ██▄
  ███    ███     ███    ███    ▄█    ███ ███    ███    ███
  ███    █▀      ███    █▀   ▄████████▀  █▀   ▄█████████▀
****************************************************************/



#include<bits/stdc++.h>


#define FOR(i, s, e) for(int i=s; i<e; i++)
#define loop(i, n) FOR(i, 0, n)
#define sf scanf
#define pf printf
#define pb push_back
#define MP make_pair
#define fr first
#define sc second
#define ll long long
#define dd double
#define all(v) v.begin(), v.end()
#define PI acos(-1.0)
#define mem(ara, value) memset(ara, value, sizeof(ara))
#define paii pair<int, int>
#define pall pair<ll, ll>
#define SZ(a) int(a.size())
#define read(nm) freopen(nm, "r", stdin)
#define write(nm) freopen(nm, "w", stdout)

#define take(args...) asdf,args
#define dump(x) cerr<<#x<<" = "<<x<<endl
#define debug(args...) cerr,args; cerr<<endl;
using namespace std;


template<typename T>
ostream& operator<<(ostream& output, vector<T>&v)
{
    output<<"[ ";
    if(SZ(v))
    {
        output<<v[0];
    }
    FOR(i, 1, SZ(v))
    {
        output<<", "<<v[i];
    }
    output<<" ]";
    return output;
}

template<typename T1, typename T2>
ostream& operator<<(ostream& output, pair<T1, T2>&p)
{
    output<<"( "<<p.fr<<", "<<p.sc<<" )";
    return output;
}




template<typename T>
ostream& operator,(ostream& output, T x)
{
    output<<x<<" ";
    return output;
}



struct ASDF{
    ASDF& operator,(int &a) {
        sf("%d", &a);
        return *this;
    }
    ASDF& operator,(long int &a){
        sf("%ld", &a);
        return *this;
    }
    ASDF& operator,(long long int &a){
        sf("%lld", &a);
        return *this;
    }
    ASDF& operator,(char &c){
        sf("%c", &c);
        return *this;
    }
    ASDF& operator,(double &d){
        sf("%lf", &d);
        return *this;
    }

    template<typename T>
    ASDF& operator,(T &a){
        cin>>a;
        return *this;
    }
}asdf;



//Header ends here
#define INF (1LL<<34)

ll N, M;
ll C, R;
ll x, y;

ll maxA = -INF, maxB = -INF, maxC = -INF, minD = INF;

ll minDist = INF;
int minID = -1;

ll dist(ll x, ll y)
{
	ll ret = -INF;
	ret = max(ret, maxA - (x+y));
	ret = max(ret, maxB - (x-y));
	ret = max(ret, maxC - (y-x));
	ret = max(ret, (x+y) - minD);
	return ret;
}

void init()
{

}


int main()
{
	//dump(minDist);
	init();
	sf("%lld %lld", &N, &M);
	sf("%d", &C);
	loop(i, C)
	{
		sf("%lld %lld", &x, &y);
		maxA = max(maxA, x+y);
		maxB = max(maxB, x-y);
		maxC = max(maxC, y-x);
		minD = min(minD, x+y);
	}
	sf("%d", &C);
	loop(i, C)
	{
		sf("%lld %lld", &x, &y);
		ll d = dist(x, y);
		//dump(d);
		if(d < minDist)
		{
			minDist = d;
			minID = i + 1;
		}
	}
	pf("%lld\n%d", minDist, minID);
    return 0;
}