페이지가 로드되지 않나요? 여기를 눌러보면 고쳐질 수도 있어요.
Placeholder

#4391

Strike Zone 1s 512MB

문제

The strike zone in baseball is the volume of space which a baseball must pass through in order to be called a strike, if the batter does not swing.

A baseball that misses the strike zone is called a ball, if the batter does not swing. Figure H.1 shows the locations of baseballs at plate which were captured by a ball tracking device during a baseball match. Each blue point was called a strike and each red point was called a ball during the match.

This may motivate us to define a rectangular region that represents the strike zone of the match, by analyzing such a ball tracking data of the match.

 

 

In this problem, you are given two sets, P1 and P2, of points in the plane and two positive constants c1 and c2.

You are asked to find an axis-parallel rectangle R that maximizes the evaluation function eval(R) = c1 × s - c2 × b, where s is the number of points in P1 ∩ R and b is the number of points in P2 ∩ R.​ 


입력

Your program is to read from standard input. The input starts with a line containing an integer n1 (1 ≤ n1 ≤ 1,000), where n1 denotes the number of points in P1.

In the following n1 lines, each line consists of two integers, ranging -109 to 109, representing the coordinates of a point in P1.

The next line contains an integer n2 (1 ≤ n2 ≤ 1,000), where n2 denotes the number of points in P2. In the following n2 lines, each line consists of two integers, ranging -109 to 109, representing the coordinates of a point in P2.

There are no two points in P1 ∪ P2 that share the same x or y coordinate. Then the next line consists of two integers, c1 and c2, ranging 1 to 10,000.


출력

Your program is to write to standard output.

Print exactly one line consisting of one integer that is eval(ܴR), where R is an axis-parallel rectangle with the maximum possible eval value for P1 and P2 with respect to c1 and c2.


예제 #1

2

-1 -1
4 4
2
0 0
2 2
5 2
6

예제 #2

3

0 5
3 3
8 -1
3
1 4
6 0
7 1
3 2
4


출처

ICPC 2019 Asia Regional –Seoul Problem H

로그인해야 코드를 작성할 수 있어요.